Deleted transactions issue

Hello,
We have a master database which runs on oracle 9iR2 and a replica backup database that runs on 11g. We have a replication between those servers. There is a huge amount of data that flows from master to replica.
Yesterday, master database stacked and i needed to reset the server. When it restarted, the database instance started to work properly. But there had been a lot of deferred transactions that are flowing from replica to master. I have unscheduled the push procedure(scheduled link) from 11g EM and recreate it. So, it worked after that. But some transactions left, before recreating last schedule. After that i couldn't find any solutions how to push those transactions from replica to master. I started to remove them from 11g EM. I have removed them all, but they stayed on 9i EM replication topology. Also, topology still shows that there are 322 deferred transactions. When i look at deftrandest view (select * from deftrandest), those transactions were all there. But, when i look at errors from deferred transactions error views, there were no errors.
How can i remove or push those transactions and can you tell me how to check concurrency and consistensy that 2 databases are exactly the same?
Kind Regards.
Edited on: Oct 26, 2008 11:32 AM

Hello
If you find entries in DEFTRANDEST view, check the following to determine why PUSH is not touching these deferred transactions:
1. Find out LAST_DELIVERED scn from SYSTEM.DEF$_DESTINATION for the destination dblink:
select DBLINK,LAST_DELIVERED from SYSTEM.DEF$_DESTINATION;
2. Find out the commit scn for the transactions from SYSTEM.DEF$_AQCALL:
select distinct t.DEFERRED_TRAN_ID,a.CSCN
from DEFTRANDEST t, SYSTEM.DEF$_AQCALL a
where t.DEFERRED_TRAN_ID=a.ENQ_TID;
3. Check if the CSCN for each of these transactions are lesser than LAST_DELIVERED scn. If LAST_DELIVERED is greater than CSCN for each of these transactions, then PUSH will never touch these transactions.
Hope this helps.
Thanks,
Rijesh

Similar Messages

  • Best Practice for Mass Deleting Transactions

    Hi Gurus
    Can you please guide on this - We need to mass delete Leads from the system. I can use Crm_Order_Delete FM. But want to know if there are any best practices to follow, or anything else that i should consider before deleting these transactions from the system.
    We have our archiving policy under discussion which may take some time, but due to large volume of reduntatn data we have some performance issues. For example when searching for leads and using ACE, the system goes through all the lead data.
    That is the reason we are plannign to delete those old records. My concerns is that using CRM_ORDER_DELETE, would it clear all the tables for those deleted transactions and if there are any best practices to follow.
    Thanks in Advance.
    Regards.
    -MP
    Edited by: Mohanpreet Singh on Apr 15, 2010 5:18 PM

    Hi,
    Please go through the AppModel application which is available at: http://developers.sun.com/prodtech/javatools/jscreator/reference/codesamples/sampleapps.html
    The OnePage Table Based example shows exactly how to use deleting multiple rows from a datatable...
    Hope this helps.
    Thanks,
    RK.

  • Delete transaction in SNP and data inconsistency in product view

    Hi,
    After i run the  SNP heuristics,system is creating PurRequisition say in DC 1500 sourcing from 1510. But in the product view of 1510 location,there is no PurReqRel is visible.This is happening for some products. And also when i use Delete transaction, /SAPAPO/RLCDEL - Delete Transaction Data , i am getting the messages orders are deleted. But when i look in product view,orders are not deleted. This issue is for all the products. we are using SCM5.0. I have run all the consistency checks like OM17,time series check etc. Any one got the same issue?
    Any suggestions?
    Thanks & Regards
    Akthar
    Edited by: Aktar Ahmed Shaik on Nov 17, 2009 3:51 PM

    Hi Akthar,
    Please raise this question in SCM-APO Forum as i hope there is no problm in R/3.
    Regards
    Suri

  • Purchasing Document Output - Transaction issue Purchas Order

    Hello colleges
    we want to use Transaction issue Purchas Order for output PO ,
    we find that we cant preview PO from this Transaction before printing  and all so we can not have the possibility to  print some POu2019S  when we print use the output manually.
    Can some one help ??
    Is there possibility to mark several POu2019S and print them whit one push button ??
    Can we have the possibility to preview PO data before print it? We need your advise u2026  
    Best regards
    Gil Shinar

    Hello ,
    1.For the first question of printing multiple PO's at the same time you can use the report RSPPFPROCESS using SE38 transaction. You have the possibility of defining the PO number range that you want to output in one Go.
    2. There is no possibility to preview and print in 'Issue Purchase Order' transaction. You can achieve the same  only in 'Process Purchase Order' (BBP_POC) transaction .
    Best Regards,
    Sapna

  • Delete Transaction Data from date to date

    Hi All,
    we want to delete transactional data from date to to date
    is there any way to delete data from date to todate?
    We are aware of following tcodes
    OBR1- Reset transaction data
    CXDL - Delete transaction data from ledger
    But there is no period/from date to date option available
    Example:
    we are in 2010 now we want to delete data from 2005- 2007 and we don't want to archive
    Thanks in advance
    Regards,
    MS

    Hi Eli,
    Thanks for the reply,
    Yes, you are right its not right to delete data based on the period... but we have such kind of typical scenario
    Let me get some other opinion
    Regards,
    MS

  • Additional check in Delete Transaction

    I'd like to add 2 if statements to the this delete transaction and check the @rowcount value before the COMMIT, is this the correct way to do it:
    DECLARE @APP_ID uniqueidentifier
    SET @APP_ID = '1234'
    BEGIN TRY
    BEGIN TRANSACTION;
    --There could be more than 1 record deleted from this Table
    DELETE
    FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID
    IF @@ROWCOUNT >= 1
    --There should only be than 1 record deleted from this Table
    DELETE
    FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID
    IF @@ROWCOUNT = 1
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    ROLLBACK TRANSACTION
    END CATCH

    Instead of the way you have written, I would suggest that you write only one IF statement checking the count of the records as required.
    DECLARE @APP_ID UNIQUEIDENTIFIER
    SET @APP_ID = '1234'
    BEGIN TRY
    BEGIN TRANSACTION;
    IF (SELECT COUNT(1) FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID)>=1
    AND
    (SELECT COUNT(1) FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID)=1
    BEGIN
    DELETE
    FROM dbo.SERVERS_APPS
    WHERE SA_APP_ID = @APP_ID
    DELETE
    FROM dbo.ENVIRONMENTS_APPS
    WHERE ENVA_APP_ID = @APP_ID
    END
    COMMIT TRANSACTION;
    END TRY
    BEGIN CATCH
    ROLLBACK TRANSACTION
    END CATCH
    Chaos isn’t a pit. Chaos is a ladder. Many who try to climb it fail and never get to try again. The fall breaks them. And some are given a chance to climb, but they refuse. They cling to the realm, or the gods, or love. Illusions. Only the ladder is real.
    The climb is all there is.

  • Delete Transactional data for one (1) Cost element

    Hi All.
    How to Delete Transactional data for one (1) Cost element?
    i know T code OKC3 but it is saying I can delete only at controlling area level,
    I want to delete only data (Transactional) for one cost element .
    Please let me know, Thank you ,
    Paartha,

    it is not possible to delete the data, if u want u can repost from one cost element to the another cost element if u are feeling the entry was posted to wrong cost element.
    Otherwise if u want restrict the transactions further to that cost element, u can restrict through cost elmenet master where in u can select the direct postings and secondary postings etc.,
    regards
    madhav

  • Delete transaction data

    In order to delete master data from 0employee, i will have to delete transaction data from some of the related info cubes and dso's.We have very huge data in these info providers. Can some one please suggest how to proceed with this and what are the steps involved in dropping the data and reloading all the data back and continuing with the deltas there after.
    Thanks
    Edited by: t.dhari on Dec 22, 2010 1:26 AM

    Hi Hari,
    What is your scenario can you explain more in detail why you want to drop the data from the 0employee after its in prod system and live?
    If you want to delte data from 0employee you can delete from char but few of the data will not be deleted. inorder to delete the complete data from the 0employee info object first you need to drop all the transaction data where this 0employee filed is being used.
    there is no other optoin to delete data completely from the 0employee and set up deltas for further loads.
    reload the data for 0employee and then load the transaction data loads by doing init and after completion of init loads set delta for the loads.
    Go through the below links
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6365e07211d2acb80000e829fbfe/content.htm
    SAP Note 146752 - "Deletion of master data / texts".
    Regards
    KP
    Edited by: prashanthk on Dec 22, 2010 3:02 PM

  • POS DM Workbench - Deleting Transactions

    We recently upgraded to ECC 6.0.  We are now working to implement POS DM.  When on the POS Workbench (/POSDW/MON0) and displaying a list of transactions, there is no icon to delete a transaction.  A consultant that was here said that at another client this was available.  Is this a security thing, a configuration thing or something to do with the release and service pack we are on?  Thoughts?

    Have you tried using the transaction /POSDW/DELE? It allows you to delete transactions for a given store/date but not individual transactions. I have not come across any functionality to delete an individual transaction.

  • HOW TO DELETE A ISSUE IN SOLMAN

    Sir,
    I Have Created 2 issues which are similar.i want to delete this issue.
    please explain how to do it
    regards
    amey

    Hi Amey,
    As per procedure system there is no any option to detete the ticket (Issue) in SOLMAN.
    There is possibility to Reject the tickete (issue) or close the tickete (issue), if you are not required.
    Hope that you are agree with me.
    Thanks & Rgds,
    Rajesh

  • HT4943 Can I delete individual issues of a magazine?

    I have a subscription to Popular Photography through Newsstand and I want to delete some individual issues. I don't want to remove either the Newsstand app or the Pop Photo subscription, just a few of the individual issues that I have already read. Is this possible?

    Your profile shows iMac and Lion OS. Is this a question for your iPad or your computer?
    Here's the instructions from another magazine for the iPad.
    Deleting an issue (and audio)
    To delete an issue, please:
    Locate the issue in your Library screen
    Touch and hold your finger on the front cover
    Tap the X on the top left hand corner of the cover
    Scroll and tap X to delete any further issues
    When you have finished, tap Done in the top left hand corner of the screen
    Note: The covers will remain, but the content (including audio) will be deleted.
    May work for your magazine.
     Cheers, Tom

  • ITunes Store Transaction Issue

    Can someone tell me how to contact iTunes for Transaction issues?
    PROBLEM:
    As you know, when we buy something from iTunes, it the "transaction details" says something like:
    "OUTSTANDING TRANS#****-****-****-**** MISCELLANEOUS DEBIT DEBIT". (The "****" being the card number).
    It has said that for the past several day in my "Transation History".
    How do I know its iTunes? My Bank told me + Everytime iTunes stuffs up (as in I buy something, and its not registsredt rpoperly I have to give the security number on the back of your debit card). So this time, I put the Security Number in maybe a few times, thinking I had to, and each time I did. They took $1 debit from me.
    Has anyone else encountered this?

    Try redownloading it via iCloud.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    If the problem persists, see this article.
    How to report an issue with Your iTunes Store purchase
    B-rock

  • Does Audit Trail capture "delete" transaction?

    Hi All,
    Does Audit Trail functionality capture the "Delete" transaction? What i mean is that we delete the values in input template, and then send it.
    Our objective is to capture when, who and what data has been deleted and hope that Audit Trail can capture these informations.
    Thanks in advance,
    CW

    Into SAP BPC itransactions are not deleted.
    If you remove value into input schedule actually you are not removoing data from fact table.
    You are insertings new values into fact table but with oposite sign.
    That's means if you have 20 into your input schedule and you delete this value and sent then actually you sent -20 to database.
    In this way the total value is 0.
    Into SAP BPC you don't have remove transactions.
    Enabling Audit Data you will be able to capture all these information and you can track any change into system.
    Regards
    Sorin Radulescu

  • Delete transaction codes from a role

    Hi,
    I want to delete 20 percent of the transaction codes from a role and I have to carry out this exercise for 20 to 30 roles, please let me know how to go about it.
    I know that I can go to the each role and delete each transaction by transaction but this process appears to be very tedious and time consuming, kindly let me know if there is any other alternative for this.
    Please help.
    Thanks
    Suresh

    Hello Suresh,
    First create single column internal table, for example ROLES which will hold all the ROLES for which you want to delete transaction codes. Read all the required ROLES into ROLES table.
    Now, You can create internal table, for example ITAB1 for ROLES and TRANSACTION CODES and read required roles and transactikon code from AGR_TCODES table.
    Now loop at ROLES.
      Move all the records from ITAB1 to ITAB2 where AGR_NAME = ROLES. --> as ROLES is single column table.
         DESCRIBE TABLE ITAB2 LINES <count>.
        Now find 20 % of the total <count>.
        Now use delete table with from 1 to <result after %age>
    ..... Go for next ROLE.
    endloop.
    For example:
    If total transaction cod efor particular ROLE are 10 then
    20% of 10 will be 2 transaciton codes.
    so you can delete table <table> name from 1 to 2.
    Hope this helps.
    Thanks,
    Augustin.

  • I have tried for months to delete old issues from newsstand.

    I can no longer find any way to delete old issues of the New Yorker from the newsstand app on my iPad with ios 7.0.4.  Where can I get help?  Also, since I am new to this forum, how will I ever find this post again, and how will I ever know if anyone has responded?

    When I hold my finger on the New Yorker icon in newsstand it begins to wiggle and an x is available, but when I click on the x I am told that if I proceed all data for the New Yorker will be deleted.  I do not want to then have to re-download 20 or so issues so I am not willing to follow your advice.  It would take a couple hours to reload those issues.
    Thanks for your help, but I need for somebody who is fully knowledgeable about removing unwanted issues of the respond to this post.  I don't want somebody to just guess about it.
    This problem has arisen only since the latest version of newsstand was issued.  An earlier version provided a capability to remove individual issues, but the feature is now hidden if it even exists.  And I cannotr even find any way to determine the version number for the app that I have installed.  IMHO this is pretty crummy programming.

Maybe you are looking for

  • How to adjust for different numbers of components on a JTabbedPane

    Hi, I have five panels on a JTabbedPane. On one, I have six components, with each being an array of five (in other words, I have six "columns" of five "rows" each). On another pane, I have only two components (not arrays). I understand that the JTabb

  • Date Format By Country

    Hi There Helpful people... Usual stuff first DW8, (Mac - not that that makes a difference), ASP VB connected to SQL database. I have a content management - which is used to maintain the content of an international site. On the site we have a timeline

  • T030 for not valuated materials

    Hi gurus, I've created a material type with these attributes: Quantity updating --> In all valuation areas Value updating --> In no valuation area When I create a PO for this material system requires returns me (correctly) this message "Account assig

  • Sessions get disconnected with a STATUS 26

    I'm running Solaris 10 x86 update 5 will all patches that smpatch said were available and Sunray Software 4.0 with patch 127554.-03. All this is running on an X4150 within ESX 3.5. The DTUs seem to run fine after anywhere between 4 hours to 3 days an

  • Two Web Servers

    Hey everyone.  I'm stumped!  Here's my set up. I have two 10.6 Servers.  One's the OD Master, running DNS, DHCP, SMB and a few other services.  The other's a replica running client fun time services.  It's also hosing all the users "Public" info via