While doing scd2 with ikm oracle slowly changing get this error plz help me

ODI-1217: Session INT_EMP1_SCD2 (574001) fails with return code 936.
ODI-1226: Step INT_EMP1_SCD2 fails after 1 attempt(s).
ODI-1240: Flow INT_EMP1_SCD2 fails while performing a Integration operation. This flow loads target table ODI_EMP1_SCD2_TGT.
ODI-1228: Task INT_EMP1_SCD2 (Integration) fails on the target ORACLE connection DS_DEV_TGT.
Caused By: java.sql.SQLSyntaxErrorException: ORA-00936: missing expression
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
     at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
     at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
     at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
     at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
     at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
     at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
     at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3769)
     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3954)
     at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1539)
     at oracle.odi.runtime.agent.execution.sql.SQLCommand.execute(SQLCommand.java:163)
     at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:102)
     at oracle.odi.runtime.agent.execution.sql.SQLExecutor.execute(SQLExecutor.java:1)
     at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
     at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2913)
     at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2625)
     at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:558)
     at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:464)
     at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:2093)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:366)
     at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:216)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:300)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:292)
     at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:855)
     at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:126)
     at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
     at java.lang.Thread.run(Thread.java:722)

Hi Cnu
Let me work through an example. A table named EMPLOYEE may have a natural key of EMPLOYEE_ID. When loading this table as a target in ODI, you will need to define the key that will be used by the KM for Updates and Deletes. This key will be defined on the Datastore as a constraint.
If you expand the Model, expand the EMPLOYEE Datastore, you will find the Constraints section under the Datastore. Create a new constraint. In the case of an SCD integration type, you should have a surrogate key as well as the natural key. EMPLOYEE_ID, being the natural key for EMPLOYEE, would most likely need to be setup as an Alternate Key constraint. So, set the constraint type as such and add the column EMPLOYEE_ID to the list of key columns. Save the constraint.
Open the Interface that loads the EMPLOYEE table, click on the Target Datastore (EMPLOYEE), and in the Property Inspector you should find a property named Update Key. This dropdown will list all of the available constraints from the Target Datastore. You will want to choose the constraint that the Interface will use to perform updates and deletes on in the Target (depending on your KM). In this case, the Alternate Key constraint setup based on the EMPLOYEE_ID should be chosen.
A long answer, but I hope it explains it well for you.
Regards,
Michael Rainey

Similar Messages

  • Not able to see ikm oracle incremental update and ikm oracle slowly changing dimensions under PHYSCIAL tab in odi 12c

    not able to see ikm oracle incremental update and ikm oracle slowly changing dimensions under PHYSCIAL tab in odi 12c
    But i'm able to see other IKM's please help me, how can i see them

    Nope, It has not been altered.
    COMPONENT NAME: LKM Oracle to Oracle (datapump)
    COMPONENT VERSION: 11.1.2.3
    AUTHOR: Oracle
    COMPATIBILITY: ODI 11.1.2 and above
    Description:
    - Loading Knowledge Module
    - Loads data from an Oracle Server to an Oracle Server using external tables in the datapump format.
    - This module is recommended when developing interfaces between two Oracle servers when DBLINK is not an option.
    - An External table definition is created on the source and target servers.
    - When using this module on a journalized source table, the Journaling table is first updated to flag the records consumed and then cleaned from these records at the end of the interface.

  • Facing problem in loading table using IKM Oracle Slowly Changing Dimension

    Hi,
    I am facing problem in loading dimension table using IKM Oracle Slowly Changing Dimension
    Following is the setup :-
    SRC :- source_table (MSSQL)
    Staging :- staging_table (MSSQL)
    TRGT :- target_table (Oracle)
    -------- source_table
    group_id     int
    group_version_id     int
    name     varchar (255)
    description     varchar (255)
    comments     varchar (2000)
    ref_number     varchar (255)
    is_latest_version     decimal (5)
    is_deleted     decimal (5)
    --------- target_table
    id     number (38,0) - Mapped to <%=odiRef.getObjectName( "L" , "SEQ_NAME" , "D" )%>.nextval
              - Executed on target
              - defined the column as SK in model
    group_id     number (38,0) - defined the column as NK in model     
    group_version_id     number (38,0) - defined the column as NK in model     
    name     varchar (255) - undefined on the model description
    description     varchar (255) - Add row on change
    comments     varchar (2000) - Add row on change
    ref_number     varchar (255) - Add row on change
    is_latest_version     number (1,0) - Add row on change
    is_deleted     number (1,0) - Add row on change
    start_datetime     date     - SYSDATE
                   - Executed on target
                   - Starting Timestamp
    end_datetime     date     - NULL
                   - Executed on target
                   - End Timestamp
    I am using following KM's:-
         LKM SQL to SQL
         IKM Oracle Slowly Changing Dimension
         CKM SQL
    it gives me the following error -
    920:Invalid relational operator

    Hi,
    Yes, this is a run-time error. Currently I am debugging it by checking SNP_SESS_TXT_LOG based on sess_no ID.
    Now, I get the following error.
    I just see the following in the operator:-
    911 : 42000 : java.sql.BatchUpdateException: ORA-00911: invalid character
    911 : 42000 : java.sql.SQLException: ORA-00911: invalid character
    java.sql.BatchUpdateException: ORA-00911: invalid character
         at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:342)
         at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:10720)
         at com.sunopsis.sql.SnpsQuery.executeBatch(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    So, I do not get any idea of the exact step that is causing failure.
    Is there any setting in the operator that I am missing on?

  • When i try to sign in to icloud with my apple id i get this error com.apple.appleaccount error 403

    when i try to sign in to icloud with my apple id i get this error com.apple.appleaccount error 403

    If you've already reset the password and changed your payment information, then the next best thing to do is call Apple directly and ask for iTunes Billing Support.  Your account is likely disabled on their computers as part of their fraud prevention protocol.  You may have to verify yourself as the account holder to get the account enabled again.
    Good Luck!

  • When Isync my iPhone with my mac desktop I get this error message, "iPhone cannot be synced. The required file cannot be found". Can anyone help?

    When I connect my iPhone (ios 4.3.3) to my Desktop Mac I get an error message. "iPhone cannot be synced. The required file cannot be found." This happened while I was downloading photos from iPhoto.

    Close "iPhoto" if it is open. Open the "Pictures" folder and right-click on "iPhoto Library." Select "Show Package Contents." Right-click the "iPod Photo Cache" folder, select "Move to Trash" and sync your iPhone. The error message should no longer appear.
    if that doesn't work,
    uninstall itunes and download the lastest version

  • ORA-31603:While Extracting SQL of a table I am getting this error.

    Hi,
    I am getting below error whenever I try to get the SQL for any table. I tried executing DBMS_METADATA() also but the same error is coming.
    Please let me know what needs to be done IF I want to extract the DDL for any object.
    ORA-31603: object "EMP" of type TABLE not found in schema "MKT"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA", line 3241
    ORA-06512: at "SYS.DBMS_METADATA", line 4812
    ORA-06512: at line 1
    Thanks,
    Rusty....

    Hi,
    use AUTHID CURRENT_USER show as below exmaple...
    CREATE OR REPLACE FUNCTION xx_get_ddl(
    p_object_type IN VARCHAR2
    , p_object_name IN VARCHAR2
    , p_owner IN VARCHAR2
    RETURN CLOB AUTHID CURRENT_USER
    IS
    v_string CLOB;
    BEGIN
    SELECT DBMS_METADATA.get_ddl(p_object_type
    , p_object_name
    , p_owner
    INTO v_string
    FROM DUAL;
    RETURN v_string;
    EXCEPTION
    WHEN OTHERS
    THEN
    RETURN NULL;
    END;

  • On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    On my Mac Mini, I keep getting this error message: "iCloud encountered an error while trying to connect to the server".  I don't have any problems with iCloud on my laptop / PC.  It works fine... Does anyone know what the problem could be?

    Your Mac must be on Lion (10.7) to run iCloud. Apple had to change the operating system to fully support it. Nevertheless, it is possible to get emails from iCloud without having Lion. Please tell me if this interests you.
    Anyways, here is the link to buy Lion (30 dollars, totally worth the upgrade ): http://itunes.apple.com/be/app/os-x-lion/id444303913?mt=12
    Franklin

  • Error ,Field catalog not found while doing billing with DP90

    Dear Guru's
    while doing billing with DP90 transaction code.i have given service order no xxxx and execute.Then i received the below error
    Field catalog not found , Message no. 0K530.Kindly help me in solving the issue.
    Thank u
    S Babu

    hi naga suribabu,
    I am also facing same issue. can you please help, where to  check the configuration for this issue

  • The message function on my Ipad just quit working.  I was using it while in Mexico and it just quit.  I have come home and synced my Ipad with Itunes and function still does not work.  How do I get this function to work again?

    The message function on my Ipad just quit working.  I was using it while in Mexico and it just quit.  I have come home and synced my Ipad with Itunes and function still does not work.  How do I get this function to work again?

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

  • REG: while doing PGI with ref to OBD should pick stock from one location

    Hi experts ,
    I have a n issue while doing PGI with ref to OBD.
    1.We are purchasing Raw material Aluminium circle 1000 nos from "X" vendor & keeping stock in Main stores i.e 0001 location plant-1.
    2.From there we are issuing to production line i.e 0003 location(Plant 1)500 nos.
    4.Remaining stock of 500 nos is in 0001 location in under some Batches.
    5.Meanwhile we are suppose to transfer the aluminium circle to plant 2 .
    6.For this we are raising STO for aluminium circles  600 nos to Plant 2.
    7.With ref to STO we are raising OBD for Plant 2.
    8.With ref to OBD While doing PGI it should picks the stock from 0001(Main Stores)  location only.
    9.But the STO qty is 600 nos ,availablity of stock in 0001 is 500 nos only .
    10.While PGI  it takes 500 nos from 0001 location & remaining 100 nos picking from Production line 0003.It should not pick from Production line 0003 location .
    11.For this system should not allow to pick from 0003 location & also system should throw error message "Deficit of QTY in 0001 location"for 100 nos.
    KIndly suggest me asap.
    Thanks in advance
    vichu
    Edited by: viswanathan seenuvasan on Dec 10, 2009 7:01 AM

    Hi,
    As I understand the picking is done automatically in outbound delivery. Am I right?
    a)
    If picking is not done automatically but manually, why the user defines the production storage location in the OBD? In this case some training would be necessary....
    b)
    If it is done automatically: which settings are you using? Batch determination only?
    1. In stock determination (SPRO > MM > IM > Stock determination > Define strategies for Stock Determination) you can define which storsage location should be used by system, and you can assign the stock determination rule to the applications (SPRO > MM > IM > Stock determination > Assign Stock determination Rule in the Applications)
    (you also have to assign the stock determination group to the material master (MARC-EPRIO))
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/d8/2f3746996611d1b5480000e82de955/frameset.htm
    2. You have to use batch determination
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/25/283aac4f7811d18a150000e816ae6e/frameset.htm
    3. You have to use availability check in delivery not to ship out goods for which reservation already exists (if goods are in production storage location I assume you have a PrdOrd...)
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/93/744cd9546011d1a7020000e829fd11/frameset.htm
    I haven't tries this but I assume it should work...
    Please check SAP online help.
    Regards,
    Csaba
    Edited by: Csaba Szommer on Jan 1, 2010 11:02 AM
    Forget stock determination. Instead of it you should use picking location determination - suggested by Laksmipathi. It wokrks fine with batch determination.
    SPRO > LE > Shipping > Picking > Determine Picking Location > Assign Picking Location
    Edited by: Csaba Szommer on Jan 1, 2010 5:03 PM

  • While doing MIRO with unplaned cost system is picking  accurel G/L account

    Dear All,
    While doing MIRO with unplaned delivery cost system is picking accural G/L account rather than cost element from PO.
    Thanks
    KMR

    Hi,
       It depeneds how the Unplanned Delivery Cost has been configured for the comany code.
    SPRO>Material Management>LIV>Incoming Invoice>Configure Unplanned Delivery Cost.
    Against Comapny Code put blank if : Unplanned delivery costs are distributed among the invoice items ( here the Materil account or the Account in the PO will be used. )
    Put     2 if : Unplanned delivery costs are posted to a separate general ledger   account  ( here the posting key UPF will be used to determine the g/l account ).
    Thanks and Regards

  • Same thing is happening to me. Adobe has not responded to anyone about this error. It appears that Abobe XI is not compatible with IE 11.  I do not get this error when I use Chrome or Firefox. Only IE 11 does this. I have tried clearing cache and cookies.

    Same thing is happening to me. Adobe has not responded to anyone about this error. It appears that Abobe XI is not compatible with IE 11.  I do not get this error when I use Chrome or Firefox. Only IE 11 does this. I have tried clearing cache and cookies. I even uninstalled and re-installed IE 11. It is still doing it.  I am surprized that a company like Adobe would just ignore our posts and leave us hanging this this.
    Error message is FAILED TO GET DISPATCH FROM IBRWSR2.  Then when you click on it the next error message says:  PHTML IS NULL. You have to click this error message twice and then the PDF finally loads. Happened every time
    Does anyone have a solution since Adobe will not respond?
    As a last resort I will try uninstalling the Adobe Reader XI and install Adobe Reader 10 instead. It seems to work ok. But when I try to install version 10 the Adobe site tries to install XI.  Any ideas?
    JimP08758

    It worked just fine for me.
    Many site issues can be caused by corrupt cookies or cache.
    * Clear the Cache and
    * Remove Cookies '''''Warning ! ! '' This will log you out of sites you're logged in to.'''
    Type '''about:preferences'''<Enter> in the address bar.
    * '''Cookies;''' Select '''Privacy.''' Under '''History,''' select Firefox will '''Use Custom Settings.''' Press the button on the right side called '''Show Cookies.''' Use the search bar to look for the site. Note; There may be more than one entry. Remove '''All''' of them.
    * '''Cache;''' Select '''Advanced > Network.''' Across from '''Cached Web Content,''' Press '''Clear Now.'''
    If there is still a problem,
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Then restart.

  • VSTS loadtest error while running Loadtest with Runsettings as No of test iterations , ERROR is : could not read result repository: unknown transaction id in results:

    Subject: VSTS loadtest error while running Loadtest with Runsettings as  No of test iterations ,  ERROR is :  could not read result repository: unknown transaction
    id in results:
    Hello All,
    I am facing the following error while running a loadtest (when i choose the scenario to be executed for No of test iterations). But the same loadtest with the Run duration for X minutes is running fine without any issues. 
    Any suggestions on the issue i am facing
    error is :
    could not read result repository: unknown transaction id in results:
    or
    could not read result repository: unknown request id in results: 
    Thanks
    Satish

    Hi Kotapati,
    >>Subject: VSTS loadtest error while running Loadtest with Runsettings as  No of test iterations ,  ERROR is :  could not read result repository: unknown transaction
    id in results:
    According to your description, you mean that when you run your load test using the Test Iterations way and then get the error message, am I right?
    If yes, please you try to close the VS, and then open this VS again. Then clean your load test project/solution and then re-build it, run your load test again check this issue again.
    In addition, I suggest you could try to create a new load test and then run it using Test Iterations way check if you get the issue for the specified load test or all load tests.
    If possible, I suggest you could share me simple load test for us so that we will further help you.
    You could upload your load test to OneDrive and then copy link here.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • When i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    when i attach my iphone 4 with computer it shows one of the USB devices attached to this computer has malfunctioned and windows does not recognize it,now what can i do ..plz help me

    I would first try unplugging All the USB devices plugged into your computer, and then plug back in just the iPhone and see if that is recognized.  Also, do you have the latest version of iTunes for Windows installed on your PC, as you need to?
    Hope this helps

  • I have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this?

    i have a problem with installing PS13 as I get an error message "This installer does not support installation on a 64-Bit Windows operating system. Please download the 64-Bit version of Photoshop Elements." how do i do this

    Try downloading the trial. It ought to detect that you have a 64-bit system.
    You aren't using Vista, are you? PSE 13 requires at least win 7 and I think a few folks with vista have gotten a similar error message on trying to install it.

Maybe you are looking for

  • Can't view a photo in the iphoto library

    I have a photo that was uploaded to my computer a couple of days ago.  It's file location is within the iPhoto library ~ Previews ~ 2012~ 03~01 etc., etc. However, when I launch iPhoto, the picture isn't anywhere to be found.  Where is it?  Is there

  • Need guidline to attach Date picker in Oracle report

    I need to take the input from the date picker in oracle report (in runtime parameter form). Pls. help me if any one can

  • Using Contract with SRM-MDM using several Web Service ID's

    Dear Experts, ALL of our Contracts were created and still being created by adopting products from CCM, meaning BBP_PDIGP-CATALOGID holds the Web Service ID and BBP_PDIGP-CATALOGITEM holds the Catalog Item GUID. When trying to create a Shopping Cart b

  • Page Breaks in REUSE_ALV_HIERSEQ_LIST_DISPLAY

    Hello Everybody, Can someone tell me how can we insert page breaks with the FM REUSE_ALV_HIERSEQ_LIST_DISPLAY. Please help Thanks, Sneha Singh.

  • Image Sizes and Resolution standards?

    are there any standards for image sizes and resolution for mobile games specifically: backgrounds and backdrops? i will be porting my game for various cell phones and i'd like to resize images to fit perfect on all cell phone screens, so what would b