When running an RMAN backup the following errors are generated in the Netvault Logs:
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 RMAN-00571: ===========================================================
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 RMAN-00571: ===========================================================
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 RMAN-03002: failure of backup command at 10/01/2008 19:12:07
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 RMAN-06059: RMAN-06059 expected archived log not found, lost of archived log compromises recoverability.
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 ORA-19625: error identifying file D:\XXX\A1XXXARC00419_0644367819.00...
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 ORA-27041: unable to open file
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 OSD-04002: unable to open file
Information 2008/10/01 18:12:07 72 Data Plugin ORACLE1 O/S-Error: (OS 2) The system cannot find the file specified.
To resolve this open the RMAN prompt and run:
RMAN catalog=user/password@CATALOG_SID target=user/password@TARGET_SID
RMAN> change archivelog all crosscheck;
If RMAN has been implemented without a catalog then perform the following :
RMAN nocatalog target=user/password@TARGET_SID
RMAN> change archivelog all crosscheck;
You should then be able to successfully backup the database.
Best practice is to allow RMAN to manage the archived redo logs, rather than manual user management.
One way of achieving RMAN management of the archived redo logs is to utilize the following Oracle plugin configuration items:
Delete Archive Logs After Successful Backup
Force Additional Log Switch Before Archive Logs Backup
Refer to the Application Plugin Module for Oracle User's Guide of further detail about these backup option.