Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Missing Archivelog Backup Files
Oracle 9.2.0.6 EE on W2K SP3.
As part of our nightly backup procedure we do an RMAN hot backup as follows:
{
backup format 'r:\%d\%d_DB_%U.bak' database PLUS ARCHIVELOG;
REPORT OBSOLETE;
DELETE OBSOLETE;
CROSSCHECK BACKUP;
CROSSCHECK COPY;
DELETE EXPIRED BACKUP;
DELETE EXPIRED COPY;
REPORT NEED BACKUP;
REPORT UNRECOVERABLE;
}
We then use a 3rd part backup tool to copy this backup to tape. We have a retention period of 'redundancy 1'.
So the sequence of events in the evening is:
So I have a problem. Because I have a retention period of 'redundancy 1', I end up in a situation where all my archivelogs from the previous day are never written out to tape. This means that incomplete recovery is limited. e.g I can't recover to 4:27pm yesterday afternoon.
How can I avoid this situation..?
Any help appreciated..
Matt Received on Fri Mar 24 2006 - 09:18:04 CST