Siebel Change Capture for S_PRSP_CONTACT

Hi All,
We have BI Apps 7.9.6.1 with Siebel as our OLTP system. The problem we are facing currently is the change capture task for 1 table viz., S_PRSP_CONTACT which is a huge partitioned table takes very long time for us. The following is the Insert query in the change capture which is taking looong time,
INSERT /*+APPEND*/ INTO siebel.S_ETL_I_IMG_30 
     (ROW_ID, MODIFICATION_NUM, OPERATION, LAST_UPD)
SELECT
          ROW_ID
          ,MODIFICATION_NUM
          ,'I'
          ,LAST_UPD
     FROM
          siebel.S_PRSP_CONTACT
     WHERE
          S_PRSP_CONTACT.LAST_UPD > TO_DATE('2011-05-06 00:16:32', 'YYYY-MM-DD HH24:MI:SS')
          AND NOT EXISTS
          SELECT
               S_ETL_R_IMG_30.ROW_ID
               ,S_ETL_R_IMG_30.MODIFICATION_NUM
               ,'I'
               ,S_ETL_R_IMG_30.LAST_UPD
          FROM
               siebel.S_ETL_R_IMG_30
          WHERE
               S_ETL_R_IMG_30.ROW_ID = S_PRSP_CONTACT.ROW_ID
               AND S_ETL_R_IMG_30.MODIFICATION_NUM = S_PRSP_CONTACT.MODIFICATION_NUM
               AND S_ETL_R_IMG_30.LAST_UPD = S_PRSP_CONTACT.LAST_UPD
The above query almost runs for 2 hours. Can anyone suggest me how to improve performance.......
Regards,
Venkatesh

Hi,
Any help would be greatly appreciated............
Regards,
Venkatesh

Similar Messages

  • Change Capture For Siebel OLTP task in DAC running for more than 10 hours

    whole etl load used to complete in 2 hours (as on now siebel data having sample data). since last Friday Change Capture For Siebel OLTP task in DAC execution plan running for more than 10 hours. I am not able to trouble shoot the problem because no log for this task
    what could be the reason for this problem? how can I fix that problem?
    Appreciate your help
    Thanks
    Jay.

    Which ETL is it that is taking the longest (is it an SDE, SIL, PLP?). I have seen someOracle vanilla ETLs coded in a way that is very ineffective. Check the DAC and Informatica logs and find out which mapping it is and where the delay is (e.g. SQL, write to DB..etc).

  • DAC Change Capture for Siebel OLTP - Customizing Change capture queries

    h4. I want to change the OOTB Change Capture SQL for few of the siebel OLTP base tables , basically want to include some parallel connection details into it. Also the same for Change Capture Sync with Siebel OLTP.
    h4. I think its not possible to achieve this through ChangeCaptureFilter.xml or Custom.SQL from the DAC server backend. I couldnt change the sqls that are available in DAC Console too. SO is there any other places out there to do this customization ?
    h4. Please let me know if anyone have come across such a custom.
    Thanks,
    Madasamy M."

    This is a forum for the OLAP Option of the database. You may have more luck on the "Business Intelligence Applications" forum:
    Business Intelligence Applications

  • Change Capture For Oracle EBS Sources

    Hello,
    I am trying to understand how the change capture process happens in DAC.
    For Siebel sources, I understood that it happens through 'image' tables. And there are some docs/info available on this.
    I am just wondering how this happens in case of Oracle EBS and other sources. I think there is no image table concept with these sources.
    Can anyone point me to some info on this..?
    Many Thanks..!

    Yes, for EBS, PeopleSoft and other non-Siebel sources, the change capture process is usually based on a form of "LAST UPDATE DATE" on the source system tables. This is is usually compared against the "LAST REFRESH DATE" in the DAC for the source and target tables. This can be seen if you look at the Session overrides for the FULL versus INCREMETAL workflows/sessions. Of course, this process may differ based on the nature of the source system. I believe certain sources that do not have a useable "LAST UPDATE DATE" may require a full extract each time. The best approach would be to go through the vanilla ETL code for FULL versus INCREMENTAL sessions.
    if this was helpful, please mark the answer as correct.

  • Problem with change capture

    HI,
    we've a problem with the Change Capture in the DAC's Execution Plan.
    We've cretead a new data model but we want to reuse the image table and the Change Capture process, so we've perfomed the following step:
    1) create the mapping SDE e SIL for the new tables of datamodel in Informatica Power Center
    2) register these mapping in the DAC
    3) create a subject areas and associate these tasks to this
    4) create execution plan including "change capture" and "change capture sync"
    5) execute our "execution plan"
    the problem is the following:
    from the Execute -> Current Run Tab -> task
    we can see that execution time of change capture is 0
    from the Execute -> Current Run Tab -> task details
    there aren't any change capture details
    So, our image table are empty.
    Do you have any idea?
    Thanks in advance,
    Antonello.

    HI Antonello,
    I am also having the same issue like you. I have created a new execution plan in DAC 101341 and ran it. It seems like the task Change Capture For Siebel OLTP completed in 0 seconds and there are no details for that particular task. Can you please let me know if you have resolved this issue? Your help is much appreciated.
    Thanks
    Ravi

  • Using DAC for implementation of two change capture views on same base table

    Hello
    We have a need to create 2 views (V_INS_CLAIM & V1_INS_CLAIM) on a single table (S_INS_CLAIM) using DAC & Image tables.
    The V_INS_CLAIM will be used to load ODS on a hourly basis and
    The V1_INS_CLAIM will be used to load DataMart on a daily basis.
    For this purpose, we propose using the following approach:
    1) Create 2 separate containers - one for ODS and one for Datamart.
    2) Use a separate image table suffix (for the same table) on each container e.g.
    - Use image suffix 51 on S_INS_CLAIM for the ODS container (will result in image tables having suffix 51)
    - Use image suffix 61 on S_INS_CLAIM for the Datamart container (will result in image tables having suffix 61)
    3) In the ODS container, the change capture process would create a view V_INS_CLAIM using
    the base table S_INS_CLAIM and the I/R/D tables using image suffix 51
    For this folder the 'Drop and Create Change Capture Views Always' flag will be set to True
    All views for this container will be created with the prefix "V_"
    4) For the Datamart container, we propose to set the flag 'Drop and Create Change Capture Views Always' to False.
    This would ensure that DAC never drops/creates the view (assuming that the view was already created by the ODS container)
    For creating the change capture views, we propose to create the views using sql procedures.
    All views for this container will be created with the prefix "V1_"
    The above procedure would ensure that we have distinct views created for each target (ODS & Datamart), which are refreshed at different intervals.
    Alternatively, instead of creating 2 views with different names in the SIEBEL schema,
    we could create 2 schemas - one for ODS and the other for Datamart and create the change capture
    views separately in each schema (using separate I/R/D image tables - as mentioned above).
    Please let me know which of the above 2 approaches would work and supported by DAC and which would be the better option ?
    Thanks

    1.) Wrong forum. Go here: Business Intelligence Applications
    2.) Soft delete or hard delete? Sound to me like you want to get rid of teh records. I.e. deleting history.
    3.) Normal upsert mapping swon't do, you'll need delete mappings (depending on #2)

  • DAC Metadata Table information for Change Capture process

    Hi All,
    is there any separate metadata tables available for the Change Capture process configured in DAC for siebel , separately , like w_etl_step_run ?
    I just wonder that the information is not available elsewhere
    Please help with your ans.
    - M.

    This forum is for OLAP option of Oracle database.
    Post your DAC question in BI-Apps forum at:
    Business Intelligence Applications
    .

  • Capture Change history for customized field- MM02.

    Hi Friends,
    I have created one sub screen with one field i.e., Warranty card No. This will be stored in MARC-ZZMAT1. Change history cannot be capturing for this field. If I made any changes (MM02), we required to capture the changes history. 
    Please advise where I need to be configured to achieve the above requirement.
    Best regards,
    Raman.

    Hi Raman,
    When you define the field (SE11), in the further characteristics tab there is a field Change Document. This needs to be checked
    Kindly do this and check
    prasanna

  • SQL Server 2012 Change Data Capture for Oracle by Attunity support for Oracle 12

    I would like to know if there are any plans for SQL Server 2012 Change Data Capture for Oracle by Attunity to support versions of Oracle 12 and if by when.

    I have asked from the author of
    http://blogs.msdn.com/b/mattm/archive/2012/03/26/cdc-for-oracle-in-sql-server-2012.aspx about this.
    I will either ask him to answer here or I would be a messenger.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • How to Change the Change Capture and Sync Process in DAC 7.9

    Hi,
    I would like to change the scripts that is involved in the change capture process , particularly the ones that has the siebel asset tables and organization tables.
    I am not able to see any editor to change the scripts that involves in building the image R and I tables. Please guide me through this,.
    Regards,
    Madasamy

    That is not suggestable to changing for OOB tables, if you want to go with your own process then create a new task and apply your changes
    If you want you can go with ebs kind of process which follows last refresh date with LAST_UPD
    instead of the below Siebel process
    For Full
    INSERT INTO S_ETL_R_IMG_6
         (ROW_ID, MODIFICATION_NUM, LAST_UPD)
         SELECT
              ROW_ID
              ,MODIFICATION_NUM
              ,LAST_UPD
         FROM
              S_ASSET
         WHERE
              LAST_UPD > CONVERT(CHAR, '2012-10-07 13:02:09', 120)
    For Incr
    INSERT INTO S_ETL_R_IMG_6
         (ROW_ID, MODIFICATION_NUM, LAST_UPD)
         SELECT
              ROW_ID
              ,MODIFICATION_NUM
              ,LAST_UPD
         FROM
              S_ETL_I_IMG_6
    DELETE FROM S_ETL_R_IMG_6 WHERE LAST_UPD < CONVERT(CHAR, '2012-10-07 13:02:26', 120)
    If helps pls mark

  • Change Capture Process DAC

    Hi,
    I;m using the out of the box execution plan in DAC for data load (CRM Complete - Siebel 8.0).I'm trying to implement the change capture process.I've created the trigger on S_ORG_EXT table as described in the DOCS.
    Whenever records are deleted from the base table S_ORG_EXT the should also be deleted from the w_org_d table of the warehouse..i'm i right?
    My issue is the deleted records are inserted in the S_ETL_R_IMG_26 & the S_ETL_D_IMG_26 TABLE & are also getting deleted from the W_ORG_DS (staging table)table but are not getting deleted from the w_org_d table.
    Can any one suggest what could be the reason??Do i need to do any other configuration in the DAC Interface.
    Thanks & Regards,

    1.) Wrong forum. Go here: Business Intelligence Applications
    2.) Soft delete or hard delete? Sound to me like you want to get rid of teh records. I.e. deleting history.
    3.) Normal upsert mapping swon't do, you'll need delete mappings (depending on #2)

  • Pinnacle Video Capture for Mac

    After talking with a bunch of salesmen (considering getting a DvD writer), I took the advice of someone in the Apple Store and bought a Pinnacle Video Capture for Mac to copy my laserdiscs. It was $100 before tax, and didn't do stuff I don't plan on doing anyway. I did spend another $25 to get an S-video cable.
    I installed the software and connected it up to my LD. I started capturing the movie, and selected S-Video (although in the small window they showed, I didn't see any difference between that and video out. I selected a max time from a limited selection, and let it record.
    After a while, I went downstairs and saw that the audio and video were not synchronized at all. I let it continue.
    After a while I came down again, and the movie was finished, so I stopped it. I found the MP4 - it was in the iTunes movie directory, and played it in iTunes. I fast-forwarded it to near the end, the voice and video were way off-set.
    I haven't tried burning this yet.
    Quicktime player doesn't think this is a valid movie file. I selected "open with" and "other" and the recommended applications had iMovie greyed out.
    Why in the world would the audio and video record at different speeds?
    Do I have to buy software to edit the movie down to the correct size?
    My Mac has:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.8 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 2 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version: 1.21f4
    I noticed the Pinacle Video Capture program was still running, so I tried to quit it, and got a window asking for my administrator ID and passsword to allow Pinnacle Video Capture to make changes. Why?

    The audio drifted out of sync because the Dazzle doesn't support locked audio. For short videos (say, under 10 minutes) this won't be very noticeable but when you capture longer videos it becomes progressively worse over time.
    What do you want to do with your Laserdisk copies? Watch them on your iPod? Edit and/or burn to DVD?
    A device like the Canopus ADVC-110 will do the video/audio conversion properly, keeping the audio and video in sync regardless of the length of your video. It converts to DV, not to MP4, and you would use it with iMovie or Final Cut (not iTunes). However you can export your video from iMovie or Final Cut to iPod/AppleTV formats.
    The Dazzle device will not work directly with iMovie or Final Cut.
    ps. If all you really want to do is transfer your Laserdisc videos to DVDs, it will be a whole lot faster & simpler to get a DVD player/recorder that has analog inputs and record directly to DVDs. There are many brands & models to choose from and many good ones are as inexpensive as the $100 you spent on the Pinnacle converter.

  • Change evtloglvl for a single user using srvmgr?

    We want to analyze some problems in our environment with one specific user.
    We use Oracle Siebel 8.2.2.3.
    We know commands for changing evtloglvl for components, but not for users.
    Is there any possibility to change the evtloglvl based on a user that log's in?
    We didn't find anything in the bookshelf.

    Also, depending on what you want to know maybe this document will be useful
    How to enable object manager logging for only one user? (Doc ID 751270.1)
    Thanks,
    Florin

  • Activate change logs for the table V_T007K

    Hi,
    Change log check box is activated in table and change logs is activated in system. But still I am not able to view any change logs recorded for the table V_T007K using SCU3 transaction.
    I tried by changing some data and than checked the SCu3 transaction. nothing is recorded against the table.
    Please let me know what needs to be done to capture the change logs for the changes done to the data in the table V_T007k table.
    Thanks in Advance.
    Thanks & Regards,
    Madhuri.

    Hi
    The table u mentioned V_T007k  is not a transparent table
    .its a view only for views u cant track changes.
    But only for transparent tables u can only track changes thru SCU3
    Also u can find the changes in a table from SAP TABLE
    CDHDR and CDPOS.
    if helpful reward me points.
    Regards
    Manas Ranjan Panda

  • Change logs for Order

    How to capture the change logs for the order.

    Use CO03 transaction to display the production order.
    Click on the i adjacent to the status, use menu path Extras --> Change documents
    which will display if the change management is active.
    Hope this helps you.

Maybe you are looking for

  • Help in resolving the error - Incident Queue is full

    I've been given a 4.2.4 system to look into since the previous admin left some time ago. I have found we are seeing the following Error pn datax IncidentXmlNotificationServlet PN-1100: Java message: Error sending XML Notification. Incident Queue is f

  • Error on Activation : BuiltIn Type or Simple Type expected

    Dear All, I imported a DC from NWDI and made some changes. When i checked in the changes and clicked on Activate option, i got an error. I figured out that certain files related to a simple type were not present on DTR. Check this : [Error while acti

  • How to enable exporting video. newbie

    Hi all, I know this is elementary but have pity on me as I'm still a newbie. I have a sequence with a few audio tracks onto a video track. I want to File/export to a vimeo video file. When I pick export, it only allows me to export the audio.  I *kno

  • Getting the servlet alias programatically

    Does anyone know if there is a way to specify the servlet's alias in the same way that one can find the context with request.getContextPath()? It seems a pity to have to hard code the alias name? Thanks.

  • Avoid two output displays in single report

    Hi, The requirement is that the report should have a check box called "Print Report" in the selection screen. If the box is not checked the report displays the output in ALV Grid format. If the checkbox is set, the output should be spooled to the pri