fail in backup with RMAN. [message #72406] |
Mon, 09 June 2003 09:02 |
VICENTE
Messages: 1 Registered: June 2003
|
Junior Member |
|
|
We had problem of space in our server, and in order to solve it, we have removed some archivelog files. Now, when we try to backup the log files, we received the error: RMAN-06089: archived log D:ORACLEARCHIVEARC22940.1 not found or out of sync with catalog
We are using a catalog. How can we forget the old archive logs?
|
|
|
Re: fail in backup with RMAN. [message #72431 is a reply to message #72406] |
Fri, 13 June 2003 17:09 |
Raju Angani
Messages: 5 Registered: June 2003
|
Junior Member |
|
|
Hi Vicente,
Run this script it will fix your promblem
Connect catalog rman/rman@rman
connect target sys/123@dshfd
allocate channel for maintenance type disk;
change archivelog all crosscheck;
release channel;
|
|
|