Oraphan(deleted) entries in the v$archived_log

1)why I have oraphan(deleted) entries in the v$archived_log
77338 04-28-2013 22:10:04 04-28-2013 22:10:39
77489 04-29-2013 18:07:21 04-29-2013 18:07:27
77489 04-29-2013 18:07:21 04-29-2013 18:07:27
1 04-30-2013 16:35:28 05-01-2013 08:47:20
1 04-30-2013 16:35:28 05-01-2013 08:47:20
5279 05-08-2013 00:05:12 05-08-2013 05:14:19
5280 05-08-2013 05:14:19 05-08-2013 11:36:16
5280 05-08-2013 05:14:19 05-08-2013 11:36:16
I checked my physical stand is in synced with primary.I have a script to monitor arch gap which grab max seq.So in this case it grabs (77497 29 apr) instead of (5280 may 8 2013)

Thanks a lot to HC and CKPT for finding time and replying me.
CKPT I really like your article.I think I am facing same issue.
We have to reset primary on 30 april 2013.
DEVL PRIMARY          77490     5474 09-MAY/00:06      ####
Primary:
select distinct RESETLOGS_CHANGE#, RESETLOGS_TIME from v$archived_log order by RESETLOGS_TIME desc;
RESETLOGS_CHANGE# RESETLOGS_TIME
2.2701E+10 05-01-2013 08:47:20
2.2701E+10 04-30-2013 16:35:28
1 08-28-2012 16:34:30
SQL> select distinct RESETLOGS_CHANGE#, RESETLOGS_TIME from v$archived_log order by RESETLOGS_TIME desc;
RESETLOGS_CHANGE# RESETLOGS_TIME
2.2701E+10 05-01-2013 08:47:20
2.2701E+10 04-30-2013 16:35:28
1 08-28-2012 16:34:30
SQL> select max(sequence#) from v$archived_log;
MAX(SEQUENCE#)
77490
SQL> archive log list
Database log mode Archive Mode
Automatic archival Enabled
Archive destination USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence 5471
Next log sequence to archive 5476
Current log sequence 5476
STANDBY
SQL> select max(sequence#) from v$archived_log where applied='YES';
MAX(SEQUENCE#)
5474

Similar Messages

  • How to retrive the deleted entries in the ztable

    please let me know how to retrive the deleted entries in the ztable.

    >
    Naseer uddin wrote:
    > Hi,
    >
    >   While creating a table have u activated the buffering (full).
    >   if not then it is not possible to retrive the lost data, and if u have activated the full buffering of table then it is possible to retrive data, up to some extent, using transaction Code se14.
    Complete Nonsense.*
    buffering doesn't mean that it will buffer the records back in database ,once you deleted.it means it will allow the buffer the table to memory only while read access.

  • Delete entries from the table

    Hi folks,
    I have delete program to delete entries from a custom table and has only one feld in it.
    tables: ZABC
    selection-screen begin of block B1 with frame title text-110.
    select-options: P_KOSTL for ZABC-KOSTL.
    selection-screen end of block B1.
    delete from ZABC where KOSTL in P_KOSTL.
    Upon executing I am entering certain cost center ids on the selection screen to delete them from the table.It did not work.
    what is it I am missing?
    Thanks,
    SK

    Hi,
    Try this sample code..Replace ZABC with your table..
    TABLES: ZABC.
    selection-screen begin of block B1 with frame title text-110.
    select-options: P_KOSTL for ZABC-KOSTL.
    selection-screen end of block B1.
    START-OF-SELECTION.
    * Delete the records from the table.
    DELETE FROM ZABC where KOSTL IN P_KOSTL[ ].  " [] for the select-options.
    IF sy-subrc <> 0.
      ROLLBACK WORK.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Naren

  • How to delete entries in the T030 table with LSMW?

    Hi all,
    I need to delete 600 entries from T030 table (Fix account table), Tcode OBYG, and I want to use a legacy for this,
    but I don´t know how or if is possible delete entries from a table with a legacy.
    Thanks in advance!

    You Can Use SCAT instead.

  • How can I delete entries in the list of currently not installed apps

    Hi everybody
    I use an iPhone 4 on fw 4.3.5 w/ german localisation. When I start the app store on the phone at the top of the update section is an entry purchased apps (or the like, don't know whether the translation is totally correct, but I guess you know what I mean).
    Typing on it delivers a list of apps with the choice to display the ones "not on this iphone". This list contains really ALL of what I ever had installed on my mobile.
    I would like to remove some entries or rebuild the list with only that apps currently being installed. Does anybody know how to do that? May that be related to the upcoming icloud service? I already did some research but did not find any hints.
    Thanks in advance for any ideas

    HI,
    If you're talking about making changes to your Purchase History... You can't...
    If you mean Deleting Apps... See here:
    How do I remove an application from my device?
    Select your device on the left side of the iTunes window.
    Click the Applications tab.
    Select Sync applications.
    Click the Selected applications button.
    Deselect the applications you wish to remove.
    Click Apply.

  • How to add or modify an entry using the JNDI

    Hi all,
    Usually I have used the netscape library to write directory application, now I have to use the JNDI ...
    Could I have some examples about the add modify and delete entry on the directory?
    Thanks a lot!
    M@x

    Download the LDAP Service provider at http://java.sun.com/products/jndi/index.html#download_ldap
    It has some example code too

  • Delete entries in "Installed Updates" log

    Is there anyway to delete entries in the "Installed software updates" log?
    I want to reinstall a firmware patch but although the patch downloads and says it has installed successfully it doesn't actually update anything... However, it shows up in the "installed updates" log.
    Any one any ideas how to delete entries in the "Installed software updates" log?

    Why do you want to delete an entry from the log?
    What do you think that will achieve?
    How do you know it doesn't actually update anything?
    Why do you think you need to reinstall the patch?
    If you reinstall the patch but it doesn't need to be reinstalled
    then I would not expect anything to change.
    Dave

  • Delete entries over 1 month old in parent  and child tables

    Hi guys,
    Im new to oracle (2days old) and im struggling to find out how to delete all entries over 1 month old in a database but also delete entries from the child table. I have read about delete cascading etc but im really strugging at the moment. Any tip or ideas? thank you

    You just need to delete data in parent table using the right WHERE clause that requires some timestamp column that stores data age. If the foreign key constraint is created with ON DELETE CASCADE child rows are automatically deleted.
    Assuming P is the parent table and C the child table and the timestamp column is stored in the parent table here is an example.
    SQL> create table p(px int primary key, d date);
    Table created.
    SQL> create table  c(cx int, cy int references p on delete cascade);
    Table created.
    SQL>
    SQL> insert into p values(1, '01/01/2011');
    1 row created.
    SQL> insert into p values(2, '15/01/2011');
    1 row created.
    SQL> insert into p values(3, '31/01/2011');
    1 row created.
    SQL> insert into c values(10,1);
    1 row created.
    SQL> insert into c values(20,2);
    1 row created.
    SQL> insert into c values(30,3);
    1 row created.
    SQL> commit;
    Commit complete.
    SQL>
    SQL> delete p where months_between(sysdate, d) >= 1;
    2 rows deleted.
    SQL>
    SQL> select * from p;
            PX D
             3 31-01-2011
    SQL> select * from c;
            CX         CY
            30          3
    SQL>Edited by: P. Forstmann on 15 févr. 2011 13:45

  • Removing entries in the table

    Hi,
    I need to delete entries in the table ,those may be anywhere between 1 to several thousand. If  I want to delete for every hundred records how could it be coded.
    Thanks,
    Kranthi.

    Here is a sample program which shows how to delete from a database table 100 records at a time. 
    report zrich_0001.
    data: itest type table of ztest with header line.
    data: itest2 type table of ztest with header line.
    data: index type i.
    * Get all the records that you want to delete
    clear itest. refresh itest.
    select * from ztest
          into corresponding fields of table itest
                        where mtart = 'ZNBW'.
    * Loop untill the first itab is empty, move 100 records * at a time into the second itab, then delete from that
    * second itab.
    while not itest[] is initial.
      clear index.
      loop at itest.
        index  = index + 1.
        check index <= 100.
        move-corresponding itest to itest2.
        append itest2.
        delete itest.
      endloop.
    delete ztest from table itest2.
    endwhile.
    Regards,
    Rich Heilman

  • Delete all entries from the following tables - Follow-up Activities (oracle)

    Hello,
    I performed a homogeneous system copy of our development BW system with the database (oracle 11.2.0.3) from the BW production system!
    I already start the oracle database and the SAP system in the target system/server (development BW system) and I´m doing some follow-up activities. One of this activities is (at the system copy guide 6.2.3.2 Activities at Database Level) is to delete all entries from the following tables:
    DBSTATHORA, DBSTAIHORA, DBSTATIORA, DBSTATTORA
    I tried to delete them using SQL Plus:
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ... and it show me that error message.
    This is strange because when I go to transaction SE14 and check the DBSTATTORA I see that table exist and contain a lot of entries!
    Why this is happened in SQL Plus!? I´m running the correct SQL statement for doing this type of task or not?
    How can I delete the entries of that tables? Can I do that using the transaction SE14?
    Can you help me please?
    Thank you,
    samid raif

    Hello
    sqlplus /nolog
    SQL> connect /as sysdba
    SQL> delete from DBSTATTORA;
    delete from DBSTATTORA
    ERROR at line 1:
    ORA-00942: table or view does not exist
    It doesn't surprise me as you are not mentioning the schema name here. Instead it should be
    delete from SAPSR3.DBSTATTORA;
    Assuming the schema owner is SAPSR3. if the owner is different then replace that with the correct one.
    Regards
    RB

  • Re:How can we delete the concurrent node entry from the FND_NODE table

    HI ,
    11.5.10.2 on Oracle Solaris on SPARC (64-bit) .
    How can we delete the concurrent node entry from the FND_NODES table without running Autoconfig.
    Currently we are having 3 nodes RAC and we are deciding to remove one node from the RAC and all 3 nodes are registered as concurrent node with application but concurrent manager is running only on one node.
    Lot of the custom configuration we did it at application web tire level. If we run the Autoconfig at that time we need to redo those changes again that we are trying to avoid.
    Regards .

    we are trying to avoid to run FND_CLONE.setup_clean because it will delete all the nodes entries from the FND_NODES.If those entries are invalid then they should be deleted.
    Running AutoConfig after purging the table will populate it with the correct entries.
    In order to populate the nodes entries again we need to run autoconfig and it will change the server id in fnd_nodes and then we need to redo the ADI client configuration on users PC and redo all the changes that we made in jserv and webserver.For ADI Clients, you should use the correct server ids which will be populated in the table for you once you run AutoConfig.
    For jserv configuration, you can refer to (Customizing an AutoConfig Environment [ID 270519.1]) to make the preserve all your custom setup/configuration after running AutoConfig.
    If there any custom script to delete only one node from the fnd_node so that we don't need to run autoconfig after that, then I really appreciate.No.
    Thanks,
    Hussein

  • Delete any entry in the table before adding an entry?

    Hello ABAP Experts,
    I have the data in the work area. I can modify / update / insert to the table.
    How to write the ABAP code for this situation.
    1) to delete any entries in the table
    2) update this entry
    so finally always there would be only one entry.
    Suggestions appreciated.
    Thanks,
    BWer

    Hi,
    Delete the entries of table by this stmt.
    DELETE FROM (dbtabname).
    Then insert the values from workarea
    INSERT INTO dbtab VALUES <work_area>.
    And u can upadte the entry with values of workarea by this stmr.
    UPDATE (dbtabname) FROM wa.
    Dont use MODIFY. It will add a new record if its a new entry.
    Rgds,
    Prakash

  • Deletion of table entries from the programTADIR

    i am using the the program to fetch the data from TADIR and for certain package and i am displaying the data on the screen.know i need to delete the data in the table TADIR, in the debugging mode i have noticed that the developement class is also existing so when i write the delete statement in the loop then the development class will also get deleted, can any one help me out in this, attached sample code.
    SELECT pgmid              "Program ID in Requests and Tasks.
             object             "Object Type.
             obj_name           "Object Name in Object Directory.
             srcsystem          "Original System of Object.
             author             "Person Responsible for a Repository Object.
             devclass           "Package.
             crelease           "SAP Release.
             delflag            "Deletion Flag.
             FROM tadir INTO TABLE i_fetch_data
             WHERE devclass = p_dclass.
      IF sy-subrc = 0.
        LOOP AT i_fetch_data INTO wa_fetch_data.
          WRITE:/10 wa_fetch_data-pgmid,
                 30 wa_fetch_data-object,
                 50 wa_fetch_data-obj_name.
        delete table i_fetch_data from wa_fetch_data

    Hi,
    It is possible to delete entries from table in debug mode without writing any prog
    but since this is sensitive, i dont want to post an answer on SDN.
    if u really want an answer , mention ur req clearly and mail me on
    [email protected]
    tc
    saji

  • How to retrieve the deleted entries

    Hi all
    I deleted some standard entries in the sand box related to item category determination in sand box.They are not stored in a change request. How can I revert back those deletd entries back into the system.
    Thanks
    Sonali

    No . I dont have IDES.
    I want to get back those deleted entries.
    Any help is appreciated.
    Thanks
    Sonali

  • What must I do to delete an unwanted entry in the "Name" column of the Bookmarks Toolbar list in my Bookmarks Library?

    What must I do to delete an unwanted entry in the "Name" column of the Bookmarks Toolbar list in my Bookmarks Library?
    At the very bottom of the entries in the "Name" column of the Bookmarks Toolbar in my Bookmarks Library, an entry has appeared which looks different and behaves differently than all the other entries.
    And I cannot delete it.
    All of the other entries have either a small icon or an empty square symbol at the left-hand end of its row.
    This bottom entry has nothing at its left-hand end.
    It reads "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base".
    And if I double-click any of the other entries, that action opens its web page.
    If I double-click this bottom entry nothing happens.
    If I right-click this bottom entry, the menu that appears includes a Delete command, but it does not disappear if I try to do that.
    And if I add a new bookmark to my Bookmarks Toolbar, it does not appear in the list which is displayed in Firefox, but it does appear beneath the entry "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base".
    In order to make the new bookmark show up in the list which is displayed in Firefox, I must open the Bookmarks Toolbar in my Bookmarks Library, scroll to the bottom of the Name list, and drag the new bookmark up past the "7/13/14- Profile folder - Thunderbird - MozillaZine Knowledge Base" entry.
    Again, how can I get rid of this unwanted entry?

    You can check for problems with the <b>places.sqlite</b> database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file
    *Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/

Maybe you are looking for

  • Editing the folder links in DW,FW "Open/Save As" dialog box

    i found apps to change the folder links in the left column of my various Windows7 Open/Save As dialog box, but it doesn't affect those in DW,FW. is there a way to do this? thanks GN

  • Last 10 seconds of video won't burn to DVD

    here is the process I'm using to burn my DVD... I'm using Mpeg-2 video and AC3 audio, and creating a disk image (.img) using DVDSP4. Then I'm burning using Disk Utility at 2x speed, because burning straight from DVDSP4 was giving me problems. The pro

  • Strange problem with SQL query in toad.

    Guys, My colleague is up with a strange problem with an SQL query that if it is run in toad encounters the "ORA-03113: end-of-file on communication channel" problem,but if run in SQL plus executes just fine. Do anyone have thoughts about this strange

  • How to delete a portal system object?

    Hello, i've created a portal system object in the system landscape of the portal content with the template KM Windows System. Now i want to delete the created system object. How i can do this? Best regards, TomSd

  • Flash workspace color problem

    I have an Intel iMac runing OSX 10.4.11 I have installed CS3 Premium. I am taking a Flash class at the JC . When I start up Flash CS3 the very first window (Flash icon and version #) is a bizare rainbow color, the welcome screen has to be turned off