当前位置:Gxlcms > 数据库问题 > oracle备份脚本(三-rman0级全备)

oracle备份脚本(三-rman0级全备)

时间:2021-07-01 10:21:17 帮助过:5人阅读

 

#!/bin/bash

export ORACLE_SID=test
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
export ORACLE_BASE=//u01/app/oracle
backtime=`date +"20%y%m%d%H%M%S"`
cd $ORACLE_HOME/bin
rman target / log=/bak/log/backupall_$backtime.log <<EOF
run {
allocate channel d1 type disk;
allocate channel d2 type disk;
allocate channel d3 type disk;
backup incremental level 0 database format ‘/bak/level0/level0_%d_%s_%p_%u.bak‘
tag=‘level 0‘ include current controlfile;
sql ‘alter system archive log current‘;
backup archivelog all format ‘/bak/arch/log_%d_%s_%p_%u.bak‘ delete all input;
release channel d3;
release channel d2;
release channel d1;
}
crosscheck backup;
delete noprompt expired backup;
delete noprompt obsolete;
EOF


find /orabak/level0/ -mtime +7 -name "*.bak" -exec rm -rf {} \;
find /orabak/arch/ -mtime +5 -name "*.bak" -exec rm -rf {} \;

oracle备份脚本(三-rman0级全备)

标签:get   man   NPU   sys   ack   alter   cat   name   oca   

人气教程排行