Please Urgent, why rman mark incorrectly as 'EXPIRED'
Hello,
First I read this note:
'Crosscheck Backup' incorrectly marks 'EXPIRED' eventhough backup files are physically present in TAPE drive [ID 1124254.1]
The solution does not work for me.
I am doing daily backup to Disk and Daily,Weekly and Monthly to tape.
I use a similar script for all the tape backups changing the POOL name:
For Disk:
run {
allocate channel oem_disk_backup device type disk;
backup as compressed backupset database TAG = 'Daily_Disk_DB' ;
backup archivelog all TAG = 'Daily_Disk_ARC' ;
release channel oem_disk_backup;
}
For Tape:
run {
allocate channel t1 type 'SBT_TAPE';
allocate channel t2 type 'SBT_TAPE';
0