cancel
Showing results for 
Search instead for 
Did you mean: 

0xe0000340 - The Database script returned an error

Paul_Turner
Level 2
Hi,

Our backup is failing with the error

Backup OracleWin The Database script returned an error. Refer to the Database script output section in job logs for more details.

The script says

Starting backup at 16-JAN-08
current log archived
released channel: ch0
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of backup plus archivelog command at 01/16/2008 02:50:37
RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
ORA-19625: error identifying file D:\ARCHIVE\ARC00230_0635439417.001
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 2) The system cannot find the file specified.

Recovery Manager complete.

Do I need to reboot the oracle server or is this something more sever?

Thanks

Paul

1 REPLY 1

Manfredi_Cariss
Level 2
Partner
Try with this RMAN command
DELETE EXPIRED ARCHIVELOG:
 
 
***RMAN***
 
connect target sys/password@dbname;
crosscheck archivelog all;
delete expired archivelog all;
 
***RMAN***