How to skip source transactions when capture is stopped and re-started

Due to a network issue I have stopped streams (capture/prop/apply) between a source-DB and target-DB. After 4 hours the network was back up again. I want to skip the transactions received in source-DB in this 4 hours time. When I re-start steams (capture/prop/apply), it should skip the transactions received in these 4 hours and start fresh capture. How can do that. Any help is much appreciated.
Amal

ids1ked,
But you did not skip only ONE transaction. You probably skipped several tnx. I told exactly how to skip only one transaction.
Actually, If you want to move current SCN to new one it is better to use incomplete recovery guide (I think you need to recreate propagation process - just check it)
Regards,
SergeR.

Similar Messages

  • How do i find out when my current phone and broadb...

    Hiya i hope someone can help how can i find out when my bt phone and broadband package ends i have looked everywhere on the site and just cant seem to find it.
    thank you

    Phone sales on 0800800150 and ask them when it ends
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • How to use same transaction when calling CMP entity beans and  DAO (JDBC)

    We are currently using Weblogic 8.1 SP2 with an Oracle 10g database (using XA thin and non-XA drivers).
    We have a session bean that invokes an entity bean and a DAO (data access object pattern) in order to add data in 2 separate tables (account and history). Rows are added to the first (account) table using a CMP Entity bean while inserts are done in the 2nd (history) table using a DAO. Here is some pseudo code:
    addHistorySessionBean (trans-attribute="Required")
    begin
    Step #1 - call addAccountEntityBean (trans- attribute="Required")
    Step #2 - call addHistoryDAO (get datasource, connection)
    end
    The 2nd table (history) has a foreign key constraint to ensure that the corresponding key exists in the first (account) table. Unfortunately, DAO inserts on the 2nd (history) table fail with a foreign key constraint violation (INTEGRITY CONSTRAINT VIOLATION - PARENT KEY NOT FOUND!) since they cannot see the row added to the 1st (account) table in step #1 by the CMP entity bean.
    How does one ensure that all this is done in a single transaction ? It appears that the app server creates two seperate transactions (one for the session bean facade and the entity bean and a 2nd transaction (when we retrieve a connection using the same data source JNDI name) for the DAO.
    A post on server side suggested using a "<resource-ref>" in the session bean to tie the two potentially separate transactions together, but that does not work for us. However, I am not sure if we are doing that correctly. After we define the resource ref in the session facade bean, do we use the resource ref "name" attribute to lookup the datasource or do we still lookup the datasource by JNDI name ? Do we need to define the resource-ref tag in the entity bean also ?
    Does Weblogic allow using a single transaction for this type of a scenario ? How does one specify within Weblogic that the same transaction should be utilized by the entity bean and any subsequent DAOs?
    People have also suggested that we defer constraint checking until the transaction(s) are committed but that sounds like a work acount without addressing this issue. Would postponing the constraint checking in Oracle cause any additional overhead ?
    Any suggestions with specific examples or documentation on how to address this issue will be gratefully appreciated.

    Thanks for your suggestion. Unfortunately, this does not work since it appears that there are 2 separate transactions going on here. One, the original one initiated by the session bean and used by the entity bean and the other initiated by the DAO. Any other ideas appreciated.
    Hi,
    Try setting the delay-database-inserts tag to
    ejbCreate in RDBMS descriptor file.
    http://bernal/stage/wls/docs81/ejb/DDreference-cmp-jar
    .html#1113981
    vasanthi ramesh

  • How to Open GUI Transaction when clicking in Hyper Link

    Hello All,
    I want to open GUI Transaction  when user will click on Hyper Link created in a particular column in a table view. For that I have created  Transaction Launcher ID using Transaction Launcher  Wizard. Then what will be the next step, i'm not getting. Can anybody help me out on this?
    Thanks in advance,
    Madhusudan

    Hi,
    Here is the sample code:
    DATA: lr_navigation TYPE REF TO if_crm_ui_navigation_service.
    lr_navigation = cl_crm_ui_navigation_service=>get_instance( me ).
    CHECK lr_navigation IS BOUND.
    lr_navigation->navigate( iv_link_id = 'ZLINKID' ).
    -ASB

  • How to configure global transaction wthin Oracle AS JMS and Oracle JMS

    How to configure global transaction if I take a message from Oracle JMS(AQ) and send it to the Oracle JMS?

    Which version of OC4J are you working on?
    In OC4J 10.1.3.x, presume your OC4J JMS listens messages via MDB which uses a resource adapter as a message listener. The resouce adaper could be the generic JMS adapter deployed in OC4J as the default.
    Resource adapter configuration to support MDBs is included in the standard ra.xml file, which lists the message listener types that the resource adapter supports.
    The MDB developer or deployer configures the MDB in the ejb-jar.xml file, through a <message-driven> element.
    In addition to above, configuration in the ejb-jar.xml file specifies whether an MDB uses transactions.
    1) The <transaction-type> subelement of <message-driven> in ejb-jar.xml has a value of Container, and the <trans-attribute> subelement of <container-transaction> (under the <assembly-descriptor> element) has a value of Required. In this circumstance, if there is an imported transaction, then message delivery and related work are performed within that transaction. If there is no imported transaction, OC4J creates a transaction, and message delivery and related work are performed within that transaction.
    2) The <transaction-type> subelement of <message-driven> in ejb-jar.xml has a value of Bean. In this circumstance, the MDB manages the transaction. If a transaction is imported, OC4J will suspend it before the message delivery method call to the MDB, in order to avoid conflict.
    Message delivery is not transacted if the <transaction-type> subelement of <message-driven> in ejb-jar.xml has a value of Container, but the <trans-attribute> element has a value of NotSupported. If there is an imported transaction in this circumstance, OC4J will suspend the transaction before the message delivery method call to the MDB.
    Details could be found from OC4J Resource Adapter Guide.

  • Macbookpro How to remove Cookies? When go to help and clk on how to remove cookies the page is blank?

    Juno Email will not download the inbox, Juno Tech says 1st remove cookies. Mac Help has "how to remove cookies" but when clk the page is blank?

    What application are you taking about?
    Safari has the option to remove them in the privacy or security tab of the preferences. Also try 'Safari > Reset Safari' it may allow you to select an option to delete the cookies.
    I don't know what 'Juno email' is. If it is failing in a Safari you may want to try another web browser, like Google Chrome or Mozilla Firefox?

  • How to in a transaction catch values of Query and use in another

    hello, i have several dropboxes in a screen
    the user select values and then press the button "Insert Data" ....at the first view could be an simple Sql Insert but before i have to do some sql queries with the values that the user select for example...in the first dropbox the user choose the area..but he see the area description and in the database have to go the area code...how can i make a Query and then catch the result to use in the insert Query...
    another thing...how to call this transaction? i was thinking in put in the button..onclick , and build onefunction that call an transaction..it is possible??
    regards
    Mário

    Mario,
    taking the users input, use it to retrieve some more values and then do some database inserts sounds to me that you should use your "Insert Data" button to call a xacute query that gets the user input as parameter and calls a transaction that does the rest of the logic: prepare and execute the actual insert.
    [SAP Help: Xacute Query|http://help.sap.com/saphelp_xmii120/helpdata/en/45/458160db273876e10000000a114a6b/frameset.htm]
    Good luck
    Michael

  • Why does Premiere 7.0 crash when capturing LIVE video and audio?

    Why does Premiere 7.x Creative Cloud Crash when capturing live Video in about 10 minutes.

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • How to re-download Apps when you have canceled and then restarted a membership

    Hi There,
    I recently (in the last two weeks) canceled a membrship, and then started a new membership. In that time my apps expired so I deleted them from my harddrive. Today, I wanted to reinstall apps, but when I did via the CC Downloader it had all my old apps from the previous membership logged. I do not have a backup of my hard drive so i can't reinstall my sytem with the former apps. So, what are my options.
    I am on the latest MAC OS.
    Thanks in advance for any assistance!

    http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html

  • How do I alter the space between the Bullet and the start of a sentence?

    Hello, I have recently upgraded to Pages 5.0.1, I would like to adjust the space between the bullet and the start of the sentence without having to use space as I need to save this action as part of the template that I am working on. I know the tabs at the top adjust indent but they move the bullet too, I need to change the space between the two. Thanks in advance for the help!

    Please ignore this question, I found it, just wasn't used to the new layout of the inspector. For anyone else who is looking, the inspector is the pannel on the left, at the top click style, then at the bottom you will see bullets, click the arrow next to bullets to expand the options then adjust the "text" indent, note there are two indent options "Bullet" and "Text", "text" effects the space between the bullet and word and "bullet" effects the space between the margin and bullet.
    Now I just need to work out how to update the default font styles in new pages and I'm back to where I was six months ago.

  • How to skip dtd validation when using  SaxParser?

    Hi all,
    I'm using xerces.jar from apache to parse xml documents. I have a problem when the
    dtd file is not accesible. I get a HttpUrlConnection exception. I want to skip this action or to ignore this problem and go further. I thought that the following line of code will solve the problem but it doesn't
    saxParserFactory.setValidating(false);
    Does anyone know how to do it?
    Thanks,
    Sergiu

    hi,
    Thanks for the hint, my problem is that I don't want to load the file in memory.
    Therefore I use SaxParser.
    Both solutions provided in that forum require loading on the whole file in memory
    Any other ideas?
    Thnaks,
    Sergiu

  • How do I ignore timecode when capturing?

    I'm trying to capture using a Canon GL2. I'd like to capture my footage, but it keeps stopping because of time code breaks. How do I ignore timecode and just capture now?

    There are some subtleties to the dub business.
    If you start the recording before you start the playback, the recording machine will lay down new TC and you get an unbroken TC with no time of day info on the tape. In essence, the whole tape was created at the moment you hit 'record' to start the dub. As you observe, Start/Stop Detect is useless on this tape as there is nothing to detect.
    If you start the playback before you start recording, the recording machine will use the existing TC, The new tape inherits all the TC properties (good or bad) of the existing tape. Useful when you do not want to use your camera master in your edit deck.
    The suggestion to dub the tape in this thread is intended to overwrite a discontinuous TC with a continuous one. Having continuous timecode is infinitely more important than start/stop detect.
    x
    ps In this particular thread the cause of the "time code breaks" could also have been the result of:
    a. the use of the wrong firewire capture protocol. With Canon cameras, it should be Firewire BASIC.
    b. attempting to capture to an external firewire drive with the camera on the same bus. Canon's implementation of firewire can screw up capturing in this arrangement.
    c. trying to play a tape recorded on a Canon on another machine. the TC track written by Canon cameras can prove problematic.
    and on and on and on ....
    one final point - when you use 'non-controllable device' with TC based material (DV for example), TC info IS captured along with the file. All 'non-controllable device' does is turn off the machine control portion of the protocol so it won't hang looking for something that is not there.

  • How to Skip Authorisation Checks when i use LDB PNPCE

    Hi Experts,
    I have requirement to skip authorization checks in PNPCE LDB.
    Please let me know how it is possible , it is quite urgent
    Thanks a lot in Advance!
    Regards,
    Akila
    Moderator message: do not skip authorization checks, do not post "urgent" issues here.
    Edited by: Thomas Zloch on Aug 7, 2011 9:53 PM

    Hi Akila,
    Its not the good idea to ignore the authorization check, There should be a legitimate reason why it has implemented at first place?
    (If programmatic)The one who implemented the Auth check is he right person to approach how to ignore,just a matter of checking sy-subrc(But i would hesitate to apply that) . Or if this applied by roles then Security person might help you.
    @Prasenjit: How Dummy value could serve this purpose?
    Cheers
    Amit

  • How to skip 3 chars when use "scanf from string" by the parameter "format string" ?

    hi, I want to read a num 123 from the string like that "sfg123" "fgd123" "ghj123"
    I know that I can use "%3s" to skip 3 chars, but it will add an output to "scanf from string"
    So, how to use parameter "format string" not only to skip 3 chars, but also add no output to the "scanf from string"
    Solved!
    Go to Solution.
    Attachments:
    1.JPG ‏15 KB

    Hi Chenyin,
    Try this VI....
    I think... This is what you are expecting....
    <<Kudos are welcome>>
    ELECTRO SAM
    For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life.
    - John 3:16

  • How to skip multiple transactions in batch input session?

    Hello experts,
    In SM 35 while processing a batch we use /n to skip the current transaction and jup to the next one. Is there any way to skip number of transactions in just one hit?
    Please reply,
    Thanks.

    In SM35, highlight each entry to be deleted and from the Menu ->Session ->Delete

Maybe you are looking for

  • Using the macbook pro with lcd drain the battery?

    hello guy i bought a macbook pro 13 last week and according to what they say  is up to 7 hours and im only getting like  5 just using the web or chatting or doing very basic stuff, i also  want to know if using the macbook pro connected to the lcd tv

  • IPhone to give a signal

    I would like my iPhone to give a signal every hour (e.g.). Who knows how?

  • Replacement of Screen

    I have a Lenovo U410 Ideapad model 4376.  The screen is defunct--big line down it and half of image gone.  I need to replace the screen.   I have found screens on ebay but need advice on how to be certain the screen will fit. Also how difficult iis i

  • When I save and/ or export a video, the light majorly fades in and out.

    I have noticed that the lighting in my videos fade in and out which ruins the quality of the video. There is nothing wrong with the original file and when I view the files before hand, the fading is not there. The fading is almost like the lighting i

  • Sony experia Z1

    I'm disapointed with the 20mpx camera that equips Z1 smarphone. Comparatively the 13 mgpx camera and flash of sony ericsson satio U1 was much better. I would like reading something about.