ORACLE-RMAN:備份腳本(全庫,增量)

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


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章