RMAN-6089: archive log not found or out of sync with catalog

Hi:
I am using OEM, not RMAN, to do a DB backup and got the above error message. I think the problem is caused by some archive logs missing from my NT machine.
I tried to manually copy from an existing archive log and rename it to the missing archive log but it didn't work.
I then tried to backup the archive logs only, not whole DB, and specified "delete input" option, and the process completed successfully.
However, when I tried to re-do the whole DB backup, it failed with the same error.
I looked at v$archived_log and I can see all archive logs, including the ones from previous incarnation and the missing ones from the current incarnation. How can I delete them or change their status (from OEM not from RMAN) from not deleted (NO) to deleted (YES) in order to perform a DB backup?

Hi,
I'm using controlfile for rman. I've issued "change archivelog all validate" before a full backup Before the full backup, I had a incremental backup process crashed(don't know why), which left some entres in v$archived_log. I have no problem completing the rman backup, but "restore archivelog all validate" command gives me "falure of restore..." and all those seq can be found in v$archived_log with "yes" for deleted column. Does that mean controlfile is still not in sync with the system? I don't need those target seq because those were before the full backup. Will there be potential problem later on during recovery? How do I (or when Oracle server will) get rid of those entries in v$archived_log? Thanks.
RMAN> restore archivelog all validate;
Starting restore at 11-AUG-05
using target database controlfile instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=28 devtype=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 08/11/2005 10:20:24
RMAN-06026: some targets not found - aborting restore
RMAN-06025: no backup of log thread 1 seq 1048 scn 122640071 found to restore
RMAN-06025: no backup of log thread 1 seq 1047 scn 122572176 found to restore
RMAN-06025: no backup of log thread 1 seq 1046 scn 122431604 found to restore
SQL> select name, completion_time,deleted from v$archived_log;
NAME COMPLETIO DEL
/u04/arch/arch_1_1046.arc 10-AUG-05 YES
/u04/arch/arch_1_1047.arc 10-AUG-05 YES
/u04/arch/arch_1_1048.arc 11-AUG-05 YES
/u04/arch/arch_1_1049.arc 11-AUG-05 YES
/u04/arch/arch_1_1050.arc 11-AUG-05 YES

Similar Messages

  • Archive log not found

    Hi,
    I want to run the RMAN backup, but I lost some of the archivers. How to take the backup excluding those lost archivers?
    Thanks,
    GK

    Only as note: You are faced to the error RMAN-06059.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 03/05/2006 12:43:42
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: errore nell'identificare il file C:\ORACLE\DB\TEST\ARCHIVE\1_36.DBF
    ORA-27041: impossibile aprire file
    OSD-04002: impossibile aprire il file
    O/S-Error: (OS 2) Impossibile trovare il file specificato.

  • Apple sync Notifier: Procedure Entry point "sqlite3_Wal_checkpoint" not found.  Result: no sync with Itunes possible

    Hello eveybody
    By booting my comp (Windows XP SP3) I get followingmsg :”  Apple sync Notifier:Procedure Entry point “sqlite3_Wal_ checkpoint” has not been found in “SQLite3.dll”“.
    Result: sync with Itunes & Iphone4 blocks with msg:  "Error by saving your identificationinformations on this comp. Try to repair with system/software". Which I didof course in vain. Pls what to do?
    Tks so much for your help

    Update:  Half problem soved
    1)     I run XP SP3 32 bits
    2)     the Entry point error does NOT goaway after I uninstalled and reinstalled Itunes
    3)     the fix of abbasfromdubai & Tit4tat corrected the boot up msg “Entrypointnot found”
    For 32 bits XP do following:
    copy (do not move) the file” SQLite3.dll” from C:\ProgramFiles <Programme in german>\Common Files <Gemeinsame Dateien inrgerman >\Apple\Apple Application Support folder to C:\Program)\Common Files \Apple\MobileDevice Support folder
    Thanks to both of them
    4)     But after patching I still have problem nr 2:
    During sync process msg "Error by saving your identification informationson this comp. Try to repair with system/software". Tried to repair afterpatch above of course doesn’t work
    Does anyone have an idea how to solve this problem  ?

  • RMAN-06059: expected archived log not found

    I'm using Backup Exec Remote Agent 11d to backup a Oracle 9.2 database runing on a Windows 2003 platform. Some ARC files have been manually deleted.
    I've tried using "corsscheck archivelog all;" but then I found that the Remote Agent has been configured NOT to use recovery catalog. Thus, RMAN uses the target database control file as the sole repository of metadata.
    Is there a way to clean up the reference to the missing ARC files? Thanks!

    Crosscheck command does not need a catalog to work. When you see RMAN-06059 controlfile obviously knows archivelogs, which should be in place, but were already moved from disk. So 'crosscheck archivelog all' should mark such archivelogs as EXPIRED.
    Werner

  • RMAN backup archive logs on tape that has not been backuped yet...

    We are using RMAN with catalog on Legato. Oracle 10gR2.
    Our archive log backup is taking every 2 hours with scriipt:
    run {                                                            
    allocate channel t1 type 'SBT_TAPE';
    allocate channel t2 type 'SBT_TAPE';
    send 'NSR_ENV=(NSR_SERVER=hitbackup.hit.hypohr,NSR_CLIENT=a22ff020.hit.hypobck)';
    # 0.0840278 = 121 minutes!
    backup archivelog FROM TIME = 'sysdate-0.0840278' filesperset 50 format '/arch1_%d_%u/';
    release channel t1;
    release channel t2;
    }In the night we take everyday full backup where we delete all 9 days old archive log which has been backuped on tape at least once. The script is following:
    run {
    allocate channel t1 type 'SBT_TAPE';
    allocate channel t2 type 'SBT_TAPE';
    send 'NSR_ENV=(NSR_SERVER=hitbackup.hit.hypohr,NSR_CLIENT=a22ff020.hit.hypobck)';
    backup full database filesperset 2 format '/full_%d_%U/';
    release channel t1;
    release channel t2;
    allocate channel d2 type disk;
    delete archivelog until time 'trunc(sysdate)-9'
    backed up 1 times to device type SBT_TAPE;
    release channel d2;
    }Problem is that sometimes archive log backup is not performed (Legato head is busy with other backups or some restore that happened in the time when backup is scheduled and later 2hours frame is missing those logs) and then we backup them with some manual script.
    We'd like to know how to backup to tape all archive logs in last 5 days that has not been backuped once to tape. I.E:
    backup archivelog FROM TIME = 'sysdate-7' filesperset  50 format '/arch1_%d_%u/'
    backed up 0 times to device type SBT_TAPE;This part will be included in daily job...which should recollect all missing archive logs from last seven days.
    THX

    You could try to use the NOT BACKED UP x TIMES clause from BACKUP command.

  • RMAN-08120: WARNING: archived log not deleted, not yet applied by standby

    i get RMAN-08120: WARNING: archived log not deleted, not yet applied by standby on primary
    but when i run below query i get the same result from primary and standby
    SQL> select max(sequence#) from v$archived_log;
    MAX(SEQUENCE#)
    44051
    SQL>
    standby is one log switch behind only!

    i get RMAN-08120: WARNING: archived log not deleted, not yet applied by standby on primary You already have answer by post of Mseberg.
    but when i run below query i get the same result from primary and standby
    SQL> select max(sequence#) from v$archived_log;
    MAX(SEQUENCE#)
    44051
    SQL>
    standby is one log switch behind only!this is wrong query used on primary & standby. even if any one of archive gap available lets suppose sequence *44020* , this archive not transported to standby due to some network problem and so on. later if archives from *44021* all the archives transported on standby upto *44051* , then it shows the maximum sequence transferred to standby, It wont shows applied sequence.
    Check the below queries.
    Primary:-
    SQL> select thread#,max(sequence#) from v$archived_log group by thread#;
    Standby:-
    SQL> select thread#,max(sequence#) from v$archived_log where applied='YES' group by thread#;
    HTH.

  • RMAN-06026: some targets not found - aborting restore

    11gR2
    Could someone tell me please what am I doing wrong ?
    Trying to recover a DB after losing all datafiles , control files , redo log files , and spfile
    *1. set my db to archive log mode*
    SQL> archive log list
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence 58
    Next log sequence to archive 60
    Current log sequence 60
    *2. Set controlfile autobackup on*
    RMAN> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    *3. Perform full DB backup*
    RMAN> backup database ;
    *4. shutdown immediate and delete all files mentioned above*
    *5. startup nomount and restore spfile*
    RMAN> startup nomount ;
    RMAN> restore spfile from autobackup
    2> recovery area = 'C:\app\Administrator\flash_recovery_area'
    3> db_name = 'orcl' ;
    channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
    Finished restore at 09-OCT-11
    *6. restart and restore control files*
    RMAN> shutdown immediate
    Oracle instance shut down
    RMAN> startup nomount
    connected to target database (not started)
    Oracle instance started
    Total System Global Area 778387456 bytes
    Fixed Size 1374808 bytes
    Variable Size 310379944 bytes
    Database Buffers 461373440 bytes
    Redo Buffers 5259264 bytes
    RMAN> restore controlfile from autobackup
    2> recovery area = 'C:\app\Administrator\flash_recovery_area'
    3> db_name = 'orcl' ;
    *6. mount DB and perform incomplete recovery*
    * and this is where things start to go wrong*
    SQL> select sequence#, status from v$log ;
    SEQUENCE# STATUS
    58 INACTIVE
    60 CURRENT
    59 INACTIVE
    RMAN> run
    2> {set until sequence 59;
    3> restore database ;
    4> recover database ;
    5> }
    * and now I'm getting the following error : *
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 10/09/2011 19:04:43
    RMAN-06026: some targets not found - aborting restore
    RMAN-06023: no backup or copy of datafile 5 found to restore
    RMAN-06023: no backup or copy of datafile 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    * although backup of this db exists *
    RMAN> list backup of database ;
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    5 Full 1.07G DISK 00:00:47 09-OCT-11
    BP Key: 5 Status: AVAILABLE Compressed: NO Tag: TAG20111009T185500
    Piece Name: C:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\ORCL\BACKUPSET\2011_10_09\O1_MF_NNNDF_TAG20111009T185500
    3NH4MK_.BKP
    List of Datafiles in backup set 5
    File LV Type Ckp SCN Ckp Time Name
    1 Full 2313843 09-OCT-11 C:\APP\ADMINISTRATOR\ORADATA\ORCL\SYSTEM01.DBF
    2 Full 2313843 09-OCT-11 C:\APP\ADMINISTRATOR\ORADATA\ORCL\SYSAUX01.DBF
    3 Full 2313843 09-OCT-11 C:\APP\ADMINISTRATOR\ORADATA\ORCL\UNDOTBS01.DBF
    4 Full 2313843 09-OCT-11 C:\APP\ADMINISTRATOR\ORADATA\ORCL\USERS01.DBF
    5 Full 2313843 09-OCT-11 C:\APP\ADMINISTRATOR\ORADATA\ORCL\EXAMPLE01.DBF

    set until sequence 59;You want to restore/recover up to sequence 58, the given number in until sequence nnn is always not included. So the backed up datafiles are simply too new, backup was done while current sequence is 60.
    You need an older backup,which is obviously not available.
    Werner

  • Background Job - Log Not found (in main memory)

    Gents,
    I am triggering a background through an RFC using JOB_OPEN,JOB_SUBMIT & JOB_CLOSE
    the program associated with the Job is put in to execution immly I don't have any problem
    but some Jobs are in Cancelled Status  coz the program was terminated due to the Error Message
    Log not found ( in main memory ) Message Class - BL Message ID - 207 all the cancelled jobs are
    having the same message.
    It's pretty sure that this message is not issued by my background program.How to get rid of this
    is there any SAP Notes.
    Best Regards-Sreeni Anbarasan

    Check out if there has been any update error in VA02 using transaction SM13.
    Lokesh

  • Update Rules inactive-Log not found in main memory

    Hi
    I am trying to active update rules but it is failing with log not found in main memory. 
    I tried  update rules syntax check and system says no error when checking the update rules.
    What could the reason? How can I dig this further? Please advise ASAP as this is urgent.
    Regards
    Vennela

    Check out if there has been any update error in VA02 using transaction SM13.
    Lokesh

  • WARNING: archive log not deleted as it is still needed

    Our Oralce Database is a single node database of version 10.1.0.
    Dataguard/Standby is not configured.....we are executing the following command for archivelog backup
    run
    allocate channel c1 device type sbt;
    backup archivelog all delete input;
    This script is successfull in backingup all the archvied log files however it is not deleteing the input files. Instead it gives the warning....
    "WARNING: archive log not deleted as it is still needed"
    What could be the problem?

    If you do a Metalink seach on "WARNING: archive log not deleted as it is still needed." you'll find a couple of documents that explain the issue.
    The short answer is that RMAN has backed up logs which have not yet shipped to standby, so it won't delete them, cause they're still needed till they're successfully shipped to standby.
    -Mark

  • OBIEE 11g : query log not found

    Hi,
    I am not able to see the query log in 11g answers manage session throwing error query log not found.
    I am using obiee 11g. 11g admin client is installed in local machine and I upload the rpd through enterprise manager. But I can not able to open the rpd in online mode that's why cannot change the query log level=2 (as in obiee 10g) for seeing the query log in Answers. Usually after making changes in 11g rpd, I upload that in server via enterprise manager console.
    Can anyone please tell me what should be correct option to see the query log and how I can open the rpd in online mode and how I can set the query log level in obiee 11g????
    Please help.
    Thanks
    Titas

    Hi,
    Its known bug and it can be done by below methods,
    Method1:
    If you enabled loglevel for each users wise it may be override with below place also can you confirm both places.
    enabled Tools-->Options-->Repository-->
    System log level by default will be 0 just try to increase to 2 or 3 and save it.
    Method1:
    by each report wise enabling loglevel
    try putting the below syntax in prefix section of advanced tab.
    SET VARIABLE LOGLEVEL=2,DISABLE_CACHE_HIT=1;
    It should generate the log with database sql as well.
    Method 3:
    Create Session variable(LOGLEVEL) with initblock
    in your init block --> datasource place put it like below query
    select 3 from IW_POSITION
    Note:just point any existing physical table from u r RPD.
    Then try to save it and test it.
    Refer screen
    http://bidevata.wordpress.com/2012/03/03/no-log-found-error-in-obiee-11g/
    Thanks
    Deva
    Edited by: Devarasu on Oct 11, 2012 11:44 PM

  • Error in integration Log not found (in main memory)

    Hello Experts,
    We are facing an error at the moment  when we send a contract from CLM to the ERP, we run the transaction BBP_ES_ANALYZE and the error that we got is Log not found (in main memory).
    We already reviewed all master data integration, any other suggestions?
    Also, this integration was working fine at the beginning, but Basis team applied an update to our ERP system and after this it generates this error.
    thanks in advance
    Kind Regards

    Hi,
    Can you check the settings as per blog Debugging MA publish to ERP?
    Unless the activate log is set, BBP_ES_ANALYSE will not be able to provide much information.
    Ashwin

  • RMAN-20001: target database not found in recovery catalog

    I am practicing loss off all control files. I have rman catalog backups which are set to autobackup controlfile. So far I did this.
    RMAN> startup nomount;
    Oracle instance started
    Total System Global Area 209715200 bytes
    Fixed Size 1272864 bytes
    Variable Size 155190240 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 2920448 bytes
    RMAN> restore controlfile from autobackup;
    Starting restore at 08-SEP-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    recovery area destination: /u02/flash_recovery
    database name (or database unique name) used for search: TEST
    channel ORA_DISK_1: autobackup found in the recovery area
    channel ORA_DISK_1: autobackup found: /u02/flash_recovery/TEST/autobackup/2009_12_09/o1_mf_s_705171034_5l0kgv4o_.bkp
    channel ORA_DISK_1: control file restore from autobackup complete
    output filename=/u02/control_files/TEST/control02.ctl
    output filename=/u03/oradata/TEST/control03.ctl
    Finished restore at 08-SEP-10
    RMAN> alter database mount;
    database mounted
    released channel: ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of alter db command at 09/08/2010 14:54:50
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20001: target database not found in recovery catalog
    I am assuming this has something to do with DBID but ... I don't have it and I don't know how to find it.

    Hi BelMan,
    Here is output
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    56869 Full 11.20M DISK 00:00:00 08-SEP-10
    BP Key: 56871 Status: AVAILABLE Compressed: NO Tag: TAG20100908T135312
    Piece Name: /u01/oracle/product/10.2.0/db_1/dbs/cf_c-549414289-20100908-00
    Control File Included: Ckp SCN: 125665520 Ckp time: 08-SEP-10
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    56993 Full 11.20M DISK 00:00:00 08-SEP-10
    BP Key: 56995 Status: AVAILABLE Compressed: NO Tag: TAG20100908T142547
    Piece Name: /u01/oracle/product/10.2.0/db_1/dbs/cf_c-549414289-20100908-01
    Control File Included: Ckp SCN: 125668490 Ckp time: 08-SEP-10

  • I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    I have unlocked my iphone and when tried to upgrade it, i got an error, so i restored it.But i was not able to activate my iphone 3gs now...it is showing a message like ' sim card not found'..please help me with this regard

    Try popping out the SIM card and turn off the phone.
    Pop in the SIM card once again and turn on the phone, make sure that the SIM card is placed and seated perfectly in the tray!
    Tell me how did you unlock your phone!?

  • I get error message''one file not found'' when tring to sync Ipod Nano 6th gen to I tunes. Help

    I get error message''one file not found'' when tring to sync Ipod nano 6th gen to Itunes. Help

    See:
    iTunes cannot sync... apps not determined installed on...: Apple Support Communities
    installed apps could not be determined...: Apple Support Communities

Maybe you are looking for