《2022年linux环境下oracle备份脚本 .pdf》由会员分享,可在线阅读,更多相关《2022年linux环境下oracle备份脚本 .pdf(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、#!/bin/sh source /home/oracle/.bash_profile $ORACLE_HOME/bin/rman EOF connect target / run allocate channel d1 type disk; allocate channel d2 type disk; allocate channel d3 type disk; allocate channel d4 type disk; backup full tag #!/bin/sh source /home/oracle/.bash_profile $ORACLE_HOME/bin/rman EOF
2、 connect target / run allocate channel d1 type disk; allocate channel d2 type disk; allocate channel d3 type disk; allocate channel d4 type disk; backup full tag dbfull format /archive/backup/full%u_%p_%c database; sql alter system archive log current; backup format /archive/backup/%T_arch_%s_%p arc
3、hivelog all delete input; release channel d1; release channel d2; release channel d3; release channel d4; list backup; exit; EOF echo -end-;date crontab 的格式:minutes|hours|day of month|month|day of week| 下面是在 CRONTAB里面的语句03 23 * * 0 /home/oracle/backupscript/b_fullbackup.sh 00 02 01 * * 上面是一个全 备份。下面是
4、一个一零级备份的脚本:source /home/oracle/.bash_profile $ORACLE_HOME/bin/rman EOF connect target / run allocate channel d1 type disk; allocate channel d2 type disk; allocate channel d3 type disk; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 3 页 - - - - - - - - - allocat
5、e channel d4 type disk; backup incremental level 0 cumulative tag db0 format /home/oracle/backup/db0%u_%s_%p database; sql alter system archive log current; backup filesperset 4 archivelog all delete input; delete noprompt obsolete; release channel d1; release channel d2; release channel d3; release
6、 channel d4; list backup; crosscheck backup; delete noprompt expired backup; delete noprompt obsolete; exit; EOF echo -end-;date 下面是一个一级备份脚本:source /home/oracle/.bash_profile $ORACLE_HOME/bin/rman EOF connect target / run allocate channel d1 type disk; allocate channel d2 type disk; allocate channel
7、 d3 type disk; allocate channel d4 type disk; backup incremental level 1 cumulative tag db1 format /home/oracle/backup/db1%u_%s_%p database; sql alter system archive log current; backup filesperset 4 archivelog all delete input; delete noprompt obsolete; release channel d1; release channel d2; relea
8、se channel d3; release channel d4; list backup; crosscheck backup; delete noprompt expired backup; delete noprompt obsolete; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 3 页 - - - - - - - - - exit; EOF echo -end-;date ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1; export ORACLE_HOME ORACLE_SID=orcl1; export ORACLE_SID rq= data+%m%d /u01/app/oracle/product/10.2.0/db_1/bin/exp system/oracle file=/bak/backup/exp$rq.dmp full=y 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 3 页 - - - - - - - - -