1.全库备份:
# script:BackupFull.sh
# creater:yangyuefei
# date:2014/5/14
# desc:backup full database datafile in archive with rman
# connect database
export ORACLE_BASE=/u01/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
export ORACLE_SID=ora10g
export PATH=$ORACLE_HOME/bin:${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin
rman target/ << EOF_RMAN
run{
allocate channel c1 type disk;
backup incremental level 0 tag 'db0' format
'/u01/oracle/RmanBackup/db0_%d_%T_%s'database include current
controlfile;
delete noprompt obsolete;
release channel c1;
}
# end
2.增量备份
# script:Incrl.sh
# creater:yangyuefei
# date:2014/5/14
# desc:backup full database datafile in archive with rman
# connect database
export ORACLE_BASE=/u01/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
export ORACLE_SID=ora10g
export PATH=$ORACLE_HOME/bin:${PATH}:/usr/bin:/bin:/usr/bin/X11:/usr/local/bin
rman target/ << EOF_RMAN
run{
allocate channel c1 type disk;
backup incremental level 1 tag 'db1' format
'/u01/oracle/RmanBackup/db1_%d_%T_%s'database include current
controlfile;
delete noprompt obsolete;
release channel c1;
}
# end