RMAN-06025: no backup of archived log for thread
Hi Gurus,
Last week we upgraded 2 node RAC from 10.2.0.3 to 11.2.0.4. Below is our rman backup script.
export ORACLE_SID=JSDB1
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_4
outputfile=/rman/stage/rman0.bck
echo "connect target /" >> $outputfile
echo "run ">> $outputfile
echo "{" >> $outputfile
echo "allocate channel t1 type disk format '/rman/stage/df_%t_%s_%p.dbf' MAXPIECESIZE 10000M;" >> $outputfile
echo "crosscheck archivelog all;" >> $outputfile
echo "delete noprompt expired archivelog all;" >> $outputfile
echo "backup as compressed backupset check logical incremental level 0 (database) plus archivelog;" >> $outputfile
echo "release channel t1;" >> $outputfile
echo "}" >> $outputfile
logfile=/rman/stage/rman_0_bkup.log
$ORACLE_HOME/bin/rman cmdfile=$outputfile msglog=$logfile