what difference between incremental level = 0 and full backup
prooraDec 23 2012 — edited Dec 25 2012Hello World ,
see the below RMAN script , as shown is incremental level 0 and the script run every night to take the backup and we are using 7 taps to take the backup which everyday has its own tape , if i take the backup as increment , do i need one tape to do recovery to all of them?
run {
allocate channel ch1 type 'sbt_tape'
PARMS="BLKSIZE=262144,ENV=(CV_mmsApiVsn=2,CV_channelPar=ch1)"
TRACE 0;
setlimit channel ch1 maxopenfiles 8;
backup
incremental level = 0
filesperset = 32
database
include current controlfile ;
}