Extract is picking up rows twice because both an explicit TABLE and a TABLE

Our extract parameter file has this following(full file uploaded):
TABLE TK_APP_DATA.PAYMENT_INFO , COLSEXCEPT (ENCRYPTED_VALUE,HASH_VALUE)
#add_scn()
TABLE TK_APP_DATA.*
#add_scn()
When i look at the change data inserted by the replicat on target and at the extract trail file I can see that a row which is updated is actually extracted twice and duplicated. I also see that the table is resolving twice in the EXTRACT rpt file:
Using the following key columns for source table TK_APP_DATA.PAYMENT_INFO : INSTRUMENT_ID, FIELD_HANDLE.
TABLEWildcard resolved (entry SCECOMM.*):
TABLE SCECOMM.PAYMENT_INSTRUMENT_FIELD, TOKENS ( TK-SCN = @GETENV ( "TRANSACTION" , "CSN" ) ) ;
Using the following key columns for source table TK_APP_DATA.PAYMENT_INFO : INSTRUMENT_ID, FIELD_HANDLE.
TABLEWildcard resolved (entry SCECOMM.*):
TABLE SCECOMM.APPLICATION_PARAMETER, TOKENS ( TK-SCN = @GETENV ( "TRANSACTION" , "CSN" ) ) ;
Anyone know how I can make it so that only one TABLE statement is used to resolve it? Or conversely a way to filter out table in a wild card statement? I would prefer to avoid having to create a seperate extract for just 1 table(schema has over 350+ tables in it)
I tried using a TABLEEXCLUDE but that excludes the table entirely. I also tried using WILDCARDRESOLVE IMMEDIATE on the specific table mappings, but can't because we also use DDL replication.
Any help would be greatly appreciated.
#anh

This is unfortunately what I have right now as my stop gap. We will sql generate the list of tables with every deployment which with our agile development is like every other week haha. I do have a requirement to replicate dynamically(the source side changes extremely frequently by adding and dropping tables) but even after talking to oracle support this is not possible. If you have a custom mapping for a table and use a wild card later which would resolve that table you will always get duplicate rows extracted.
I talked to oracle support(with raised this as a bug/feature request) and raised this with our oracle engagement manager and asked them to add better functionality when it comes to filtering and wild card selection for TABLE and MAP statements to have an option setting to only map once. It's in their queue however not sure how high of a priority it will be for them(I'm guessing not very high =) )

Similar Messages

  • Why am i charged twice from both my apple account and my credit card each time i make a purchase?

    Why Apple is deducting money two times from both my apple account and my credit card each time i make a purchase?

    Hey shawnilory,
    Thanks for the question. The duplicate charges you see may actually be authorization holds. To review the actual charges on your account, you can see your iTunes Purchase history as outlined by this resource:
    iTunes Store & Mac App Store: About payment card authorization holds
    http://support.apple.com/kb/HT3702
    To review the actual charges on your account, see your iTunes Purchase History. You will be asked to enter your iTunes account name and password. (You can only see Mac App Store web order details in your iTunes purchase history.) Your Purchase History will display your most recent purchases first. To view details of any purchase, click the arrow to the left of the order date.
    If you have questions about the way your financial institution handles authorization requests, contact their customer service department.
    Thanks,
    Matt M.

  • I need to restrict printing but keep the Content Type and Page Extraction allowed. How do I keep both the content type and page extraction displaying allowed?

    When I change the settings to allow for the content type and page extraction and save it, it shows allowed.  When I close the pdf, reopen it, review the security properties, it shows the content type as allowed and the page extraction as disallowed. I need both to stay at allowed, how do make this happen?

    The moment that you select not to allow any kind of change done to the file then pages extraction is automatically not allowed as well. There's no way around that.

  • How to Extract data from Cluster table  and transperant table

    Hello BW Experts ,
    I want to extract the data from cluster table BSEG and a transperant table BKPF .
    The primary fields are BELNR , GJHAR and BUKRS.
    the fields of table BKPF to extarct is BUDAT and fields of BSEG table is HKONT , BSCHL , ZUONR and POSID.
    I can not create a view over these two tables as BSEG is a Cluster table.
    Please guide me.
    Regadrs ,
    Amol.

    hi Amol,
    take a look Sigg's weblog
    /people/siegfried.szameitat/blog/2005/09/29/generic-extraction-via-function-module
    you can use RSAX_BIW_GET_DATA_SIMPLE as sample, there specified import parameters
    FUNCTION RSAX_BIW_GET_DATA_SIMPLE.
    ""Lokale Schnittstelle:
    *" IMPORTING
    *" VALUE(I_REQUNR) TYPE SRSC_S_IF_SIMPLE-REQUNR
    *" VALUE(I_DSOURCE) TYPE SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
    *" VALUE(I_MAXSIZE) TYPE SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
    *" VALUE(I_INITFLAG) TYPE SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
    *" VALUE(I_READ_ONLY) TYPE SRSC_S_IF_SIMPLE-READONLY OPTIONAL
    *" TABLES
    *" I_T_SELECT TYPE SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
    *" I_T_FIELDS TYPE SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
    *" E_T_DATA STRUCTURE SFLIGHT OPTIONAL
    *" EXCEPTIONS
    *" NO_MORE_DATA
    *" ERROR_PASSED_TO_MESS_HANDLER

  • Row tables Or Column Tables Or both?

    I would like to know the basic approach in order to build a new model  in hana ( row tables or column tables or both) ?
    Suppose I've a source system for example excel or .csv..etc and different excels consists of different types of data that includes both dimensions and measures and each source file consists of around 500 fields. The source feed comes every day and I need to load each and every field in the database.
    Out of these 500 fields and assume 300 are dimensions and 200 are facts, and for reporting for purpose i just need 150 dimensions and 80 measures and some calculated measures. (Infuture, I may need to consider some more dimensions and facts) .
    Now my question is,
    As the source feed comes every day and I need to load all the fields,
    Do I need to create first row tables first as Row tables are preferred for insert operations or Can I go a head with column tables directly?
    I just want to know the guidelines to follow , where we need to load some thousand of fields and huge number of rows and at the same time my modeling should be good for reporting as well.
    What I am not able to catch is, SAP HANA recommends not to combine row tables and column table for operations otherwise first I load all the data into row tables and then create column tables specific to reporting purpose by using row tables' data? ( I can create some stored procs to load data from row tables to columns tables and run them after data load completes)
    Please let me know your inputs.
    Thanks,
    Sree

    Hello Shree,
    For the better performance it is always advisable to store table as a Column Store.
    This can be changed anytime to row store.
    HANA does have a row store and you can create row-oriented tables for some very specific scenarios:
    - Transient data like queues, where you insert and delete a lot and the data never persists
    - Configuration tables which are never joined, where you select individual entire rows
    - When you are advised to by a SAP support personnel
    Also if you are going to create views it only supports column based stored tables.
    Usually performance is better with the Column store.
    For more details you can refer:
    http://scn.sap.com/thread/2025441
    Regards,
    Saurabh

  • Brand New MacB Air and i haven't been able to get passed the format which has had to be done twice because, I have a French Numeric Keyboard and Language in English.  The minute I type in my password, the keyboard gives me letters that i did NOT type.

    I live in Switzerland and can only buy a Mac Air with a French or German keyboard, no chance to buy an English keyboard Mac here,.  When setting up  I chose the French numerique keyboard, although there are two choices French or French numerique.  I put in my language as English.  When all was set up I came to the start page and had to put in my password, by the grace of g....I just happened to see the first letter I typed before it turned into a dot.  My password which was supposed to start with the number 2 showed a french e with accent before it quikly became a dot.
      Because of the dot system, this meant that I had no clue what the keyboard was typing as my password ...........and true enough my password was not accepted despite my trying all combinations.  I have had to reformat twice now thanks to Apple Chat and both times my password was not accepted.  I am in the process of formatting it again, this time on my own.  If the Start page does not accept my password again this can only mean that the Mac left the factory with faults.  I could not be more disappointed with the money spent and the time and trouble that Apple Chat and I have spent in trying to correct a brand new out of the box Mac.  I have a cheap Toshiba laptop also with a french keyboard and english language which gave me no trouble at all.  I am not impressed with the so called King of computers!  First of all the dot system is daft.  People want to be able to see and confirm their passwords before they are set for good.  Second,  this problem is going to give me a lot of grief.  Switzerland business is not renowned for its after sales service or the time it takes to do repairs.  When I had an issue with my Vaio laptop which was still under warranty, they kindly picked it up from my house, repaired and promptly returned it.  How's that for good proper service.

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • MDM adpter picking up file twice.

    Hi,
    my scenario is MDM->PI->R3. When the XML files are generated into MDM ready folder,PI is picking these files twice.
    For Ex: Material no A20 is getting picked up twice. (Its result two messages in SXMB_MONI.Two IDOCS getting created at R3.)
    1st message ID is PQR
    2nd message ID is ABC
    When i am checking in Message monitoring->Adapter engine->Message ID(PQR & ABC).Both messages showing me same file name XY.xml.
    Why the same file is getting picked up twice? Where as we know whenever PI pickes up the file,Same file is gets transfered into Archive folder. so that PI wont Pick it up 2nd time.
    Please suggest.

    I never configured MDM PI adapter, but i do think that you have an option to delete file after picking up,if this type option is there use this,so you can avoid this problem.
    check like processing mode option available in MDM AAdapter or not.
    Regards,
    Raj

  • Salary getting computed twice (because of secondary assignment)

    Hi
    Instead of updating the assignment for a particular employee, my client has added a new assignment (without his knowledge), which has now become the secondary assignment.
    Because of this, the payroll is getting computed twice since both the primary and secondary assignments have been assigned with the payroll.
    I am unable to delete the secondary assignment from the front-end. I tried removing the payroll from the secondary assignment as well as terminating the secondary assignment, but this is not helping.
    Any pointers on this would be highly appreciated.
    Thanks
    Regards
    Trupti

    Thanks for your reply Avinash!
    The user has been running the payroll for both the assignments since the last 3 months, but he noticed it only now. And, the Transfer to GL has been run as well for the last 3 months. So, I cannot change the effective date to the date when it was created (in June), because when I try to remove the payroll for the secondary assignment for this date, it says future payroll actions exist.
    As of now, I have removed the payroll as of sysdate, and deleted the payroll process run for the secondary assignment for the month of August. Since the payroll was run for both the assignments, the payroll run of the primary assignment is intact.
    Need to wait and see if the user faces any issues during next month's payroll.
    Regards
    Trupti

  • I cannot email photos from within iPhoto (v. 9.5.1). When I hit send I get a message: "Your email did not go through because the server did not reply." This happens for both my iCloud account and my Shaw account. What to do???

    I cannot email photos from within iPhoto (v. 9.5.1). When I hit send I get a message: "Your email did not go through because the server did not reply." This happens for both my iCloud account and my Shaw account. What to do???

    Are you able to email from Mail with those two accounts?  If so:
    1 - go to iPhoto's Accounts preference pane and delete both accounts. Now add them back and try again.
    2 - a better solution IMO is to set Mail as the email client for iPhoto is iPhoto's General preference pane.  This gives you better access to your contacts, a sent copy of all emails and, if you want a layout similar to iPhoto's, photo layouts located in Mail's stationary.

  • I have an imac and macbook pro. my creative suite 5.5 design premium is on them both. I'm about to take them in to the apple store because they are running bad and have them completely restored to factory settings. when I get them back will i be able to r

    I have an imac and a macbook pro. my creative suite 5.5 design premium is on them both. I'm about to take them in to the apple store because they are running bad and have them completely restored to factory settings. when I get them back will i be able to re-install my adobe creative suite to both of my computers using my same product code from when i first bought it?

    Yes. Just make sure to deactivate the license on both systems using Apple menu --> Deactivate while one of the suite programs is running.
    Mylenium

  • I can't sync my iphone to itunes i get this error message "Iphone could not sync because the sync failed to start" Help? both my computer windows and my phone are on the current versions of ios and itunes

    I can't sync my iphone to itunes i get this error message "Iphone could not sync because the sync failed to start" Help? both my computer windows and my phone are on the current versions of ios and itunes

    Hello lenmin,
    Thanks for using Apple Support Communities.
    To help resolve this issue where you're repeatedly prompted to authorize with your Apple ID in iTunes when syncing, please follow the directions in the article below.
    iTunes: Missing folder or incorrect permissions may prevent authorization - Apple Support
    Have a great weekend,
    Alex H.

  • Really confused here. I have somehow created both a managed account and an administrator account. The admin acct is now highlighted in system preferences. We are now blocked from using our computer because parental controls keeps popping up.

    In attempting to add a music lesson program for my daughters band lessons we have messed up our computer. I now have both a managed account and an administrator account (both in my name).  It is using the managed account now and not letting use the Internet because parental controls keep popping up. I would like to delete the managed account and get back to the admin account but I have no idea what my login is for the admin account. We have never had to use it before this problem started and what we thought it was when we set it up does not work. Any ideas?

    If the user account is associated with an Apple ID, and you know that account password, the Apple ID can be used to reset your user account password.
    Otherwise, boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select  ▹ Restart from the menu bar.
    You should now be able to log in with the new password, but you won't be able to unlock the Keychain. If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it. You’ll need to reset your keychain in the preferences of the Keychain Access application.

  • My iPhone 4s cannot join a public unsecured network but my iPad and macbook can.  I have reset the network settings twice.  Both times it worked, but only for a few minutes.  What can I do?

    My iphone 4s cannot join a public unsecured network, but my ipad and macbook can with no problems.  I have reset the network settings on the iphone twice.  Both times that fixed the problem but only for a few minutes, then I get the "cannot join network" message again.  Please help!  What can I do?

    Anyone have any ideas or information to help with this?  Any help and consideration is MUCH appreciated.

  • I have an Intel iMac running OSX 10.6.8. I would like to use Final Cut Pro 10.1. I know I need OSX 10.9 for this. Can I run both 10.6.8 and 10.9 on the iMac ? I do not want to convert completely to 10.9 because of my existing software. Thanks for any help

    I have an Intel iMac running OSX 10.6.8. I would like to use Final Cut Pro 10.1. I know I need OSX 10.9 for this. Can I run both 10.6.8 and 10.9 on the iMac ? I do not want to convert completely to 10.9 because of my existing software. Thanks for any help

    It would depend on how old your IMac is, how mush memory you have, it it can be upgraded by OWC, etc. I have a 2006 Macbook Pro and would NOT put Mavericks on it or espeacially FCP 10.1.1 on it because the most memory it can have is 4 GB. You need at least 8 GB to work with Final Cut Pro 10.1.1. IMHO.
      I would try to find a copy of Final Cut Express perhaps.
      Does this answer your question?

  • I have 2 apple account ,and i want to have everything in one ,because both i by music

    i have 2 apple account ,and i want to have everything in one ,because both i by music

    Apple IDs can't be merged.
    (125207)

Maybe you are looking for

  • HT201359 What do I do? Can't delete credit card from iTunes and can't update apps

    I'm having problems with deleting my credit card from my iTunes account. Tried everything possible. I tried making a purchase but it didn't go through so now it's not letting me update my apps. What do I do?

  • Itunes cant find music files

    Seems to be some discussion on this problem where as itunes will not play the music on the computer and says it cant find the music files. I found that the block for using itunes as default audio player has to be checked. This is in preferences under

  • Wrong multitouch functioning

    Hi everybody. Recently, I've bought an iPad mini. I've observed some problems in multitouch function, I think this is related with the iOS and I would like report this problem to Apple. The problem is: If you are using an application and you close an

  • Can I use my E71 as a tethering device?

    Hello all, I have an unlocked E71 which does not conform to the 3G bands in the US - I bought the E71 in Hong Kong. Disappointment aside, I always have a laptop and an ipod touch with me. Even my E71 cannot access the internet, can I use it as a mobi

  • Multiple iPods on a charger?

    Hi everyone. I have multiple iPods (iPod, nano and shuffle), two of which did not come with a USB power adapter (we all know they should). My question is, can I, through the use of a USB double/etc. adapter charge multiple iPods at once? Has anyone d