ODI: Error loading the data of HFM: invalid dimension name

Hello

I am fairly new to ODI and I was wondering if any guru could help me overcome a question im facing. I try to load data from a csv file in HFM. I chose the good KM (LKM file SQL and SQL IKM to Hyperion Financial Management Data), with the Sunopsis Memory engine than the staging area.

To facilitate the file csv has the exact structure as well as the dimensions of HFM applications and has been located in the interface, as shown below:

Column of the source - target HFM column file

-Scenario
Year - year
Display - display
Entity - entity
Value - value
Account - account
PIC - PIC
CUSTOM1 - Custom1
CUSTOM2 - Custom2
Custom3 - Custom3
Custom4 - Custom4
-Period
DataValue - Datavalue
-Description (no column of the source, mapped as ")

The csv file contains basic members only. I set the error log file path, and when running the interface I get an error. When I open the error log, I see the following messages:

Line: 1, error: invalid dimension name
! Column_Order = C1_SCENARIO, C2_YEAR, C3_VIEW, C4_ENTITY, C5_VALUE, C6_ACCOUNT, C7_ICP, C8_CUSTOM1, C9_CUSTOM2, C10_CUSTOM3, C11_CUSTOM4, C12_PERIOD, C13_DATAVALUE
C1_SCENARIO
line: 3 error: a valid column order is not specified.
Actual; 2007; YTD; 20043; < entity currency >; 13040; [ICP no]; [None]; 1000; [None]; [None]; Jan; 512000; » »
> > > > > >



I'm not sure how to solve, as it is based on the interface mapping match dimensions on a 1:1 basis. In addition, dimension in the target column names correspond to the dimension names of application of HFM (that this application has been deducted).

Help, please!

Thank you very much
Jorge

Published by: 993020 on March 11, 2013 05:06

Dear Experts,

ODI: 11.1.1.6.0
HFM: 9.3.3

I also met a similar error as OP.

In my case, the error occurs when I use SUNOPSIS_MEMORY_ENGINE as the staging. If I simply change this staging to the Oracle schema, the Interface will load data successfully to HFM. So, I'm curious on what cause the SUNOPSIS cannot become the staging for the loading of HFM.

This will show in the IKM SQL to the FM data log file:

Load data started: 3/14/2013 13:41:11.
Line: 1, Error: Invalid dimension name
!Column_Order = C1_SCENARIO, C2_YEAR, C3_VIEW, C4_ENTITY, C5_VALUE, C6_ACCOUNT, C7_ICP, C8_PRODUCT, C9_CUSTOMERS, C10_CHANNEL, C11_UNITSFLOWS, C12_PERIOD, C13_DESCRIPTION

C1_SCENARIO


Line: 3, Error: A valid column order is not specified.
Actual;2007;YTD;EastSales;;Sales;[ICP None];Comma_PDAs;Electronic_City;National_Accts;[None];February;;555
>>>>>>

Load data completed: 3/14/2013 13:41:11.

It seems like the query generated is not picking up the Column Alias name, but this only happens if I use SUNOPSIS_MEMORY_ENGINE as the staging. With Oracle schema as staging, data load is successfully finished.

This is the generated code from the KM

Prepare for Loading (Using Oracle as Staging)

from java.util import HashMap
from java.lang import Boolean
from java.lang import Integer
from com.hyperion.odi.common import ODIConstants
from com.hyperion.odi.hfm import ODIHFMConstants
from com.hyperion.odi.connection import HypAppConnectionFactory

# Target HFM connection properties
clusterName   = "demo92"
userName      = "admin"
password      =  "<@=snpRef.getInfo("DEST_PASS") @>"
application   = "COMMA"

targetProps = HashMap()
targetProps.put(ODIConstants.SERVER,clusterName)
targetProps.put(ODIConstants.USER,userName)
targetProps.put(ODIConstants.PASSWORD,password)
targetProps.put(ODIConstants.APPLICATION_NAME,application)

# Load options
consolidateOnly    = 0
importMode            = "Merge"
accumulateWithinFile  = 0
fileContainsShareData = 0
consolidateAfterLoad  = 0
consolidateParameters = ""
logEnabled             = 1
logFileName           = r"C:\Temp\ODI_HFM_Load.log"
tableName             = r"HFMData"
columnMap            = 'SCENARIO=Scenario , YEAR=Year , VIEW=View , ENTITY=Entity , VALUE=Value , ACCOUNT=Account , ICP=ICP , PRODUCT=Product , CUSTOMERS=Customers , CHANNEL=Channel , UNITSFLOWS=UnitsFlows , PERIOD=Period , DATAVALUE=DataValue , DESCRIPTION=Description '
srcQuery= """select   C1_SCENARIO    "Scenario",C2_YEAR    "Year",C3_VIEW    "View",C4_ENTITY    "Entity",C5_VALUE    "Value",C6_ACCOUNT    "Account",C7_ICP    "ICP",C8_PRODUCT    "Product",C9_CUSTOMERS    "Customers",C10_CHANNEL    "Channel",C11_UNITSFLOWS    "UnitsFlows",C12_PERIOD    "Period",555    "DataValue",C13_DESCRIPTION    "Description" from ODI_TMP."C$_0HFMData"  where      (1=1)     """
srcCx                    = odiRef.getJDBCConnection("SRC")
srcQueryFetchSize=30

loadOptions = HashMap()
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEONLY, Boolean(consolidateOnly))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_IMPORTMODE, importMode)
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_ACCUMULATEWITHINFILE, Boolean(accumulateWithinFile))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_FILECONTAINSSHAREDATA, Boolean(fileContainsShareData))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEAFTERLOAD, Boolean(consolidateAfterLoad))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEPARAMS, consolidateParameters)
loadOptions.put(ODIConstants.LOG_ENABLED, Boolean(logEnabled))
loadOptions.put(ODIConstants.LOG_FILE_NAME, logFileName)
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_TABLENAME, tableName);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_COLUMNMAP, columnMap);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCECONNECTION, srcCx);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERY, srcQuery);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERYFETCHSIZE, Integer(srcQueryFetchSize));

# Get the writer
hfmWriter = HypAppConnectionFactory.getAppWriter(HypAppConnectionFactory.APP_HFM, targetProps);

# Begin load
hfmWriter.beginLoad(loadOptions)

Prepare for loading (using SUNOPSIS as staging)

from java.util import HashMap
from java.lang import Boolean
from java.lang import Integer
from com.hyperion.odi.common import ODIConstants
from com.hyperion.odi.hfm import ODIHFMConstants
from com.hyperion.odi.connection import HypAppConnectionFactory

# Target HFM connection properties
clusterName   = "demo92"
userName      = "admin"
password      =  "<@=snpRef.getInfo("DEST_PASS") @>"
application   = "COMMA"

targetProps = HashMap()
targetProps.put(ODIConstants.SERVER,clusterName)
targetProps.put(ODIConstants.USER,userName)
targetProps.put(ODIConstants.PASSWORD,password)
targetProps.put(ODIConstants.APPLICATION_NAME,application)

# Load options
consolidateOnly    = 0
importMode            = "Merge"
accumulateWithinFile  = 0
fileContainsShareData = 0
consolidateAfterLoad  = 0
consolidateParameters = ""
logEnabled             = 1
logFileName           = r"C:\Temp\ODI_HFM_Load.log"
tableName             = r"HFMData"
columnMap            = 'SCENARIO=Scenario , YEAR=Year , VIEW=View , ENTITY=Entity , VALUE=Value , ACCOUNT=Account , ICP=ICP , PRODUCT=Product , CUSTOMERS=Customers , CHANNEL=Channel , UNITSFLOWS=UnitsFlows , PERIOD=Period , DATAVALUE=DataValue , DESCRIPTION=Description '
srcQuery= """select   C1_SCENARIO    "Scenario",C2_YEAR    "Year",C3_VIEW    "View",C4_ENTITY    "Entity",C5_VALUE    "Value",C6_ACCOUNT    "Account",C7_ICP    "ICP",C8_PRODUCT    "Product",C9_CUSTOMERS    "Customers",C10_CHANNEL    "Channel",C11_UNITSFLOWS    "UnitsFlows",C12_PERIOD    "Period",555    "DataValue",C13_DESCRIPTION    "Description" from "C$_0HFMData"  where      (1=1)     """
srcCx                    = odiRef.getJDBCConnection("SRC")
srcQueryFetchSize=30

loadOptions = HashMap()
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEONLY, Boolean(consolidateOnly))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_IMPORTMODE, importMode)
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_ACCUMULATEWITHINFILE, Boolean(accumulateWithinFile))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_FILECONTAINSSHAREDATA, Boolean(fileContainsShareData))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEAFTERLOAD, Boolean(consolidateAfterLoad))
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_IKMDATA_CONSOLIDATEPARAMS, consolidateParameters)
loadOptions.put(ODIConstants.LOG_ENABLED, Boolean(logEnabled))
loadOptions.put(ODIConstants.LOG_FILE_NAME, logFileName)
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_TABLENAME, tableName);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_COLUMNMAP, columnMap);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCECONNECTION, srcCx);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERY, srcQuery);
loadOptions.put(ODIHFMConstants.OPTIONS_NAME_SOURCEQUERYFETCHSIZE, Integer(srcQueryFetchSize));

# Get the writer
hfmWriter = HypAppConnectionFactory.getAppWriter(HypAppConnectionFactory.APP_HFM, targetProps);

# Begin load
hfmWriter.beginLoad(loadOptions)

If anyone can help on how to solve this?

Thank you

Published by: user10620897 on March 14, 2013 14:28

Tags: Business Intelligence

Similar Questions

  • Error loading of data in OLIVIER 11 g by ODI

    Hello


    I have been setting up a demo instance in a windows 2008 Server R2, for applications of the OBI 11.1.1.8.1. However, when I am trying to load the data from the instance VISION I get some type of error which I think might be interesting to share here for a solution. Some data are already loaded, and I'm able to see the RPD in the administration tool. But in the ODI, I am able to see a mistake for the rest of the data which reads as:


    ODI-26188: there is no enough memory to perform this action of user interface. Increase the maximum segment size value (.) Xmx)


    error.jpg




    Also in the administration tool when I click on "See data" in the physical layer I get pop up as the connection has failed. Help, please!


    Note: The interface of studio ODI is now blocked from yesterday and cannot continue with troubleshooting.


    Concerning

    Oumaima

    Bro

    as in error, increase the memory of your operating system, if you are in a box, it would take 16GB.

    Date of arrival:

    ODI-26188: ODI-26188: there is not enough memory to perform this action of user interface. Increase the maximum value of the Java heap size (-Xmx).

    Cause: UI Action requires more memory available at the present time.

    Action: Increase the maximum value of the size of the Java heap using the "-Xmx" JVM option.

    Level: 32

    Type: ERROR

    Impact: other

    link below: scroll to the bottom for your mistake.

    ODI-01100 to ODI-30096 - 11g Release 1 (11.1.1.6.0)

  • How do I load the data calculated in HFM

    Hi gurus

    1. how to load the data calculated in HFM?

    I extracted the calculated data and when I tried to load the data calculated in HFM is partially responsible, showing the errors you can not load data for parent members of the account, Custom personalized 1 4...
    Then I ran the consolidation to get the values of the parent company.
    Is there an alternative way to load the data calculated in HFM?

    Concerning
    Hubin

    Hi Hubin,

    Calculated data cannot be loaded in HFM manually, these accounts with calculated field data should be generated through the logic of the computation.

    And parent members also don't take the data they are parents for the sum of some basic level accounts.

    So just load the data for basic level accounts and make sure they are consolidated accounts of field, that there was no error and calculated accounts data automatically generates through the logic written in the Rules file.

    And after loading data just run the consolidation and sink also rules file in both cases to the work of the logic of the computation.

    Kind regards
    Srikanth

  • PC Hung and will now restart not [XP Pro SP3]. SYS error at startup as follows; Lsass.exe - system error. The endpoint Format is invalid.

    Original title: PC Hung and will now not restart not [XP Pro SP3]

    PC Gardner - [open Excel, open outlook, being viewed in PDF and word doc being edited].

    Restarted, then - loading SYS error window at startup as follows; lsass.exe - system error. The endpoint Format is invalid.

    Can not very well, or at the end of the message have to turn it off. Tried to reboot several times, same result.

    Just before this happened was a dialogue window appear on my PC, which indicates that Microsoft wanted to investigate problems of software they had observed on my PC that I had not sent the reports to. I approved this request and they took the reports...

    Am currently bimbling turn of safe mode with networking.

    Any smart people able to help me please?

    Thanks George

    Hello

    We will try these steps and check.

    Step 1: Try using some know last good configuration and check.

    Step 2: System Restore from safe mode or safe mode with network.

    Reference:
    A description of the options to start in Windows XP Mode
    http://support.Microsoft.com/kb/315222
    To start the computer in safe mode
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/boot_failsafe.mspx?mfr=true
    How to restore Windows XP to a previous state
    http://support.Microsoft.com/kb/306084

  • Error message at startup: error loading: \App Data\Roaming\pxma2.dll C\Users\ (my name). Access denied

    Hello activity (yet) on Vista 32 bit, I receive a message (at the start). Error loading: \App Data\Roaming\pxma2.dll C\Users\ (my name). Access denied. Please notify.

    Hello

    Cannot find this file on Google so you probably dodged some software malware and you should do a
    very thorough control. Message on how to remove the error message if still it y
    After the audits of malware.

    If you need search malware here's my recommendations - they will allow you to
    scrutiny and the withdrawal without ending up with a load of spyware programs running
    resident who can cause as many questions as the malware and may be more difficult to detect as the
    cause.

    No one program cannot be used to detect and remove any malware. Added that often
    easy to detect malicious software often comes with a much harder to detect and remove the
    payload. So its best to be now too thorough than paying the high price later. Check
    with an extreme overdose point and then run the cleaning only when you are very
    that the system is clean.

    It can be made repeatedly in Mode safe - F8 tap you start, however, you should
    also run in regular Windows when you can.

    Download malwarebytes and scan with it, run MRT and add Prevx to be sure that he is gone.
    (If Rootkits run UnHackMe)

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Malwarebytes - free
    http://www.Malwarebytes.org/

    Run the malware removal tool from Microsoft

    Start - type in the search box-> find MRT top - right on - click RUN AS ADMIN.

    You should get this tool and its updates via Windows updates - if necessary, you can
    Download it here.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN
    (Then run MRT as shown above.)

    Microsoft Malicious - 32-bit removal tool
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=AD724AE0-E72D-4F54-9AB3-75B8EB148356&displaylang=en

    Microsoft Malicious removal tool - 64 bit
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=585D2BDE-367F-495e-94E7-6349F4EFFC74&displaylang=en

    also install Prevx to be sure that it is all gone.

    Download - SAVE - go to where you put it-right on - click RUN AS ADMIN

    Prevx - Home - free - small, fast, exceptional CLOUD protection, working with the other security
    programs. It is a single scanner, VERY EFFICIENT, if it finds something come back here or
    Use Google to see how to remove.
    http://www.prevx.com/   <-->
    http://info.prevx.com/downloadcsi.asp  <-->

    Choice of PCmag editor - Prevx-
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    Try the demo version of Hitman Pro:

    Hitman Pro is a second scanner reviews, designed to save your computer from malicious software
    (viruses, Trojans, rootkits, etc.). who infected your computer despite safe
    what you have done (such as antivirus, firewall, etc.).
    http://www.SurfRight.nl/en/hitmanpro

    --------------------------------------------------------

    If necessary here are some free online scanners to help the

    http://www.eset.com/onlinescan/

    -----------------------------------

    Original version is now replaced by the Microsoft Safety Scanner
    http://OneCare.live.com/site/en-us/default.htm

    Microsoft safety scanner
    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    ----------------------------------

    http://www.Kaspersky.com/virusscanner

    Other tests free online
    http://www.Google.com/search?hl=en&source=HP&q=antivirus+free+online+scan&AQ=f&OQ=&AQI=G1

    --------------------------------------------------------

    Also follow these steps for the General corruption of cleaning and repair/replace damaged/missing system
    files.

    Run DiskCleanup - start - all programs - Accessories - System Tools - Disk Cleanup

    Start - type this into the search-> find COMMAND to top box and RIGHT CLICK-
    RUN AS ADMIN

    Enter this at the command prompt - sfc/scannow

    How to analyze the log file entries that the Microsoft Windows Resource Checker
    (SFC.exe) program generates in Windows Vista cbs.log
    http://support.Microsoft.com/kb/928228

    Run checkdisk - schedule it to run at the next startup, then apply OK your way out then
    turn it back on.

    How to run the check disk at startup in Vista
    http://www.Vistax64.com/tutorials/67612-check-disk-Chkdsk.html

    -----------------------------------------------------------------------

    If we find Rootkits use this thread and other suggestions. (Run UnHackMe)

    http://social.answers.Microsoft.com/forums/en-us/InternetExplorer/thread/a8f665f0-C793-441A-a5b9-54b7e1e7a5a4/

    I hope this helps.

  • Generic procedure to load the data from the source to the table target

    Hi all

    I want to create a generic procedure to load data of X number of the source table to X number of the target table.

    such as:

    Source1-> Target1

    Source2-> Target2

    -> Target3 Source3

    Each target table has the same structure as the source table.

    The indexes are same as well. Constraint are not predefined in the source or target tables.there is no involved in loading the data from the business logic.

    It would simply add.

    This procedure will be scheduled during off hours and probably only once in a month.

    I created a procedure that does this, and not like:

    (1) make a contribution to the procedure as Source and target table.

    (2) find the index in the target table.

    (3) get the metadata of the target table indexes and pick up.

    (4) delete the index above.

    (5) load the data from the source to the target (Append).

    (6) Re-create the indexes on the target table by using the collection of meta data.

    (7) delete the records in the source table.

    sample proc as: (logging of errors is missing)

    CREATE or REPLACE PROCEDURE PP_LOAD_SOURCE_TARGET (p_source_table IN VARCHAR2,

    p_target_table IN VARCHAR2)

    IS

    V_varchar_tbl. ARRAY TYPE IS VARCHAR2 (32);

    l_varchar_tbl v_varchar_tbl;

    TYPE v_clob_tbl_ind IS TABLE OF VARCHAR2 (32767) INDEX OF PLS_INTEGER;

    l_clob_tbl_ind v_clob_tbl_ind;

    g_owner CONSTANT VARCHAR2 (10): = 'STG '.

    CONSTANT VARCHAR2 G_OBJECT (6): = 'INDEX ';

    BEGIN

    SELECT DISTINCT INDEX_NAME BULK COLLECT

    IN l_varchar_tbl

    OF ALL_INDEXES

    WHERE table_name = p_target_table

    AND the OWNER = g_owner;

    FOR k IN l_varchar_tbl. FIRST... l_varchar_tbl. LAST LOOP

    SELECT DBMS_METADATA. GET_DDL (g_object,

    l_varchar_tbl (k),

    g_owner)

    IN l_clob_tbl_ind (k)

    FROM DUAL;

    END LOOP;

    BECAUSE me IN l_varchar_tbl. FIRST... l_varchar_tbl. LAST LOOP

    RUN IMMEDIATELY "DROP INDEX ' |" l_varchar_tbl (i);

    DBMS_OUTPUT. PUT_LINE (' INDEXED DROPED AS :'|| l_varchar_tbl (i));

    END LOOP;

    RUN IMMEDIATELY ' INSERT / * + APPEND * / INTO ' | p_target_table |

    ' SELECT * FROM ' | '. p_source_table;

    COMMIT;

    FOR s IN l_clob_tbl_ind. FIRST... l_clob_tbl_ind LAST LOOP.

    EXECUTE IMMEDIATE l_clob_tbl_ind (s);

    END LOOP;

    RUN IMMEDIATELY 'TRUNCATE TABLE ' | p_source_table;

    END PP_LOAD_SOURCE_TARGET;

    I want to know:

    1 has anyone put up a similar solution if yes what kind of challenges have to face.

    2. it is a good approach.

    3. How can I minimize the failure of the data load.

    Why not just

    create table to check-in as

    Select "SOURCE1" source, targets "TARGET1", 'Y' union flag double all the

    Select "SOURCE2', 'TARGET2', 'Y' in all the double union

    Select "SOURCE3', 'Target3', 'Y' in all the double union

    Select "SOURCE4', 'TARGET4', 'Y' in all the double union

    Select 'Source.5', 'TARGET5', 'Y' in double

    SOURCE TARGET FLAG
    SOURCE1 TARGET1 THERE
    SOURCE2 TARGET2 THERE
    SOURCE3 TARGET3 THERE
    SOURCE4 TARGET4 THERE
    SOURCE.5 TARGET5 THERE

    declare

    the_command varchar2 (1000);

    Start

    for r in (select source, target of the archiving of the pavilion where = 'Y')

    loop

    the_command: = "insert / * + append * / into ' |" r.Target | ' Select * from ' | '. r.source;

    dbms_output.put_line (the_command);

    -execution immediate the_command;

    the_command: = 'truncate table ' | r.source | "drop storage."

    dbms_output.put_line (the_command);

    -execution immediate the_command;

    dbms_output.put_line(r.source ||) 'table transformed');

    end loop;

    end;

    Insert / * + append * / into select destination1 * source1

    truncate table SOURCE1 drop storage

    Treated SOURCE1 table

    Insert / * + append * / to select TARGET2 * in SOURCE2

    truncate table SOURCE2 drop storage

    Treated SOURCE2 table

    Insert / * + append * / into select target3 * of SOURCE3

    truncate table SOURCE3 drop storage

    Treated SOURCE3 table

    Insert / * + append * / into TARGET4 select * from SOURCE4

    truncate table SOURCE4 drop storage

    Table treated SOURCE4

    Insert / * + append * / into TARGET5 select * from source.5

    truncate table source.5 drop storage

    Treated source.5 table

    Concerning

    Etbin

  • Problem loading the data in the table

    Hi friends,

    I'm using ODI 11 g.
    I'm doing a flat file for the Table mapping. I have 10 records in the flat file when loading the data in an Oracle table, I can see only 1 card is loaded.
    I use IKM SQL add and control using separate option.

    Can you please let me know where exactly the problem.

    Thank you
    Lony

    Hi Lony,

    Please let us know other KM by in your ODI interface.
    Please check in the flat file, column PK have same value or it idifferent?
    Please check if the header is present in your flat file.
    When you load the file in the table of the model > right click on the table (flat file adding that model table) and click Show data and see all 10 records are you able to see at ODI level

    Kind regards
    Phanikanth

  • Loading the data into Essbase is slow

    Loading the data into Essbase is slow.
    Loading speed of 10 seconds on a record.

    It is used standard KM.

    How it is possible to optimize the loading of data into Essbase?

    Thank you

    --
    Gelo

    Just for you say the patch was released

    ORACLE DATA INTEGRATOR 10.1.3.5.2_02 UNIQUE PATCH

    Patch ID - 8785893

    8589752: IKM SQL data Essbase - loading bulk instead of rank by rank treatment mode when an error occurs during the loading

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Cannot connect - error loading the database...

    Hello

    Since last night find it me impossible to log in on my Skype.

    He puts me "error loading the database. Skype." It is possible that another instance of Skype to use it.

    I have reinstalled Skype, restart my pc, close all programs that could use it.

    My husband get a leverage son skpe without pb so it comes well d a pb with my nickname... going to Word of the change back I. Despite all this, I still have the same message that appears! 1

    did anyone have the same pb? and how he made it?

    Please pour your help!

    Rrbonjour

    so I did well the manip: Task Manager, process shutdown Skype.

    then relaunch the application, but it gives me the same result...

    I made a new system more earlier but it's restore gives me the same result...

    I asked a third person open my account on another pc and ca works... so it just my pc, not a hacking, (already it reassures me!)

    My spouse does so well to open Skype with his nickname but I still nothing.

    Application rattachee a Skype name can she used Lun?

  • "error loading the c:\ProgramFiles\CommonFiles\parentoLogic\UUS2\UUS.dll module is not found" I'm cluelss and generally ignore this message. Should I try hard or leave?

    Original title: error loading the c:\ProgramFiles\CommonFiles\parentoLogic\UUS2\UUS.dll module could not be found

    I'm cluelss and generally ignore this message. Should I try hard or leave?

    Thank you

    This link may be a little more useful:

    http://www.utilitysoftwarereviews.com/how-to-remove-ParetoLogic-uusdll-error-message/

  • Receiver error message: "error loading the TCP MIB library" when you try to configure a network printer on Windows 7.

    I can't find the answer anywhere else online. I get the error message: "error loading the TCP MIB library" when you try to configure a network of Xerox on Windows 7 printer.

    Steps to follow:
    (1) install the drivers
    (2) add printer > local printer > create a new Port > Standard TCP/IP / IP address
    (3) error message

    Can test the printer.
    Others may use the printer at the same IP address.

    Any other suggestions?
    Thank you!
    Angie

    Can be caused by corrupted files win7 or third parties who have replaced the ones win7

    (for example, ntprint.dll, tcpmib.dll, mgmtapi.dll, smmpapi.dll)

    Maybe run scanow, the System File Checker

  • Automation of loading the data of single application FDM for different applications

    Friends, my query is somewhat complex. I have 6 (two in Hyperion Planning, two HPCM) and two in Hyperion Essbase applications. I copied the adapter in the Workbench and renamed accordingly to load the data for each of them. Now the problem is I want to automate the data load for each of these requests, but don't know how it's done. Through many forums to get a better understanding but no luck!

    A humble request to all the FDQM experts for their valuable advice on how to realize the automation of all the tools in one application of FDM.

    Thanks in advance!

    You would automate this process via the Batch Loader integrated with FDM. The process to use this is exactly the same as you have one or more target applications. The ultimate target application is based on the name of the place incorporated into the batch processing file naming convention. Each of your adapters different target will be associated with one or more locations in your configuration of metadata location FDM.

  • API to load the data of Group of people

    Hello

    Can someone give me the API for loading the data of Group of people, in Oracle Payroll?

    Thank you
    George

    Hello

    You can update the api group of people by HR_ASSIGNMENT_API.update_emp_asg_criteria data,

  • Load the data from a text file into a table using pl/sql

    Hi Experts,

    I want to load the data from a text file (sample1.txt) to a table using pl/sql

    I used the pl/sql code below

    ***********************************
    declare
    f utl_file.file_type;
    s varchar2 (200);
    c number: = 0;
    Start
    f: = utl_file.fopen('TRY','sample1.txt','R');
    loop
    UTL_FILE.get_line (f, s);
    insert into sampletable (a, b, c) values (s, s, s);
    c: = c + 1;
    end loop;
    exception
    When NO_DATA_FOUND then
    UTL_FILE.fclose (f);
    dbms_output.put_line('No. deles de lignes insérées: ' || c);
    end;

    ***************************************

    and my sample1.txt file looks like

    ***************************************
    1
    2
    3
    ***************************************

    Gets the data inserted, with way below

    Select * from sampletable;

    A, B AND C

    1-1-1
    2-2-2
    3 3 3

    I want that data to get inserted as

    A, B AND C

    1 2 3

    The text file I have is to have three lines, and the first value of each line should go to each column

    Help, please...

    Thank you
    declare
    f utl_file.file_type;
    s1 varchar2(200);
    s2 varchar2(200);
    s3 varchar2(200);
    c number := 0;
    begin
    f := utl_file.fopen('TRY','sample1.txt','R');
    utl_file.get_line(f,s1);
    utl_file.get_line(f,s2);
    utl_file.get_line(f,s3);
    insert into sampletable (a,b,c) values (s1,s2,s3);
    c := c + 1;
    utl_file.fclose(f);
    exception
    when NO_DATA_FOUND then
    if utl_file.is_open(f) then utl_file.fclose(f); ens if;
    dbms_output.put_line('No. of rows inserted : ' || c);
    end;
    

    SY.

  • Load the data from txt

    Hello

    I just export the data in my cube, he geneates two text because of this file is more than 2 GB in size, one is xxxxx.txt, another is xxxxx_1.txt.

    My question is that if I load the data file above in the same cube, I should just specify the first file xxxxx.txt? It seems that I can't specify both text files?

    Thank you

    you only need to load the second file
    Or
    clear data and load the two

    Your choice, you will get the same results.

Maybe you are looking for

  • The images have a ugly, like orange hue of a sort of standby automatic eyes

    I have a new computer with Windows 8 (new store brand) Asus and downloaded the latest version of firefox.Almost immediately, I noticed a very recognizable orange shade on most or all images, similar to what it would look like if you voluntarily put o

  • Random imap account appeared on the iPhone

    Hoping someone can help - suddenly appeared random imap account recently on my iPhone!  It's a story of the minbox.email and the description is "who will marry you."  When I check the account in my email application, there are a bunch of junk.  The a

  • Windows Media Player C00D11BA error after upgrade (?) to Windows 8.1 8.0 on the urge

    I have one: HP ENVY 15 notebook PC, nuber of product: C8P47AV 8.1 pro 64-bit of Windows Intel Core i7-4702MQ CPU @ 2.20 GHz NVIDIA GeForce GT 740M #1 AudioDevice: Intel(r) Audio display #2 AudioDevice: IDT High Definition Audio CODEC After I've upgra

  • HP Pavilion g4-2149se memory test failed

    Help! Memory test: failedFailure ID:-GGC4R1-663702-MFPX1G-402203 do - what I do? This is perhaps why my system shuts down when I try to enter a program... IDK

  • ads guide do not install win7

    Guide to the shows ' ads Guide will be obsolete in less than 3 days. Choose the download for the latest version... ». When I click on download, a box comes up and says download completed successfully. However, all the slots for all channels shows "no