主頁 > 知識庫 > linux自動運(yùn)行rman增量備份腳本

linux自動運(yùn)行rman增量備份腳本

熱門標(biāo)簽:七日殺a19.5全地圖標(biāo)注 電渠外呼系統(tǒng) N個你智能電銷機(jī)器人 車瑪仕極限運(yùn)動場所地圖標(biāo)注 騰訊地圖標(biāo)注要費(fèi)用嗎 外呼電話系統(tǒng)用卡嗎 高德地圖標(biāo)注公司名字大全 地圖標(biāo)注怎么保存 廣東營銷智能外呼系統(tǒng)商家

一、增量備份腳本
0級備份腳本:紅色部分為自定義的備份文件放置的目錄

復(fù)制代碼 代碼如下:

#script.:BackupFull.sh
#creater:xyh
#date:2014-03-08
#desc:backup full database datafile in archive with rman
#connect database
export ORACLE_BASE=/u01/app/oracle
export ORACLE_SID=orcl
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
rman target/ EOF_RMAN
run{
allocate channel c1 type disk;
backup incremental level 0 tag 'db0' format
'/home/oracle/RmanBackup/db0_%d_%T_%s' database include current controlfile;
sql 'alter system archive log current';
backup filesperset 5 format '/home/oracle/RmanBackup/cf0_%d_%T_%s' archivelog all delete input;
#filesperset 5表示備份集里面最多包含5個文件 
delete noprompt obsolete;
release channel c1;
}
# end

1級備份腳本

復(fù)制代碼 代碼如下:

#script.:Incrl.sh
#creater:xyh
#date:2014-03-08
#desc:backup full database datafile in archive with rman
#connect database
export ORACLE_BASE=/u01/app/oracle
export ORACLE_SID=orcl
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
rman target/ EOF_RMAN
run{
allocate channel c1 type disk;
backup incremental level 1 tag 'db1' format
'/home/oracle/RmanBackup/db1_%d_%T_%s' database include current controlfile;
sql 'alter system archive log current';
backup filesperset 5 format '/home/oracle/RmanBackup/cf1_%d_%T_%s' archivelog all delete input;
#filesperset 5表示備份集里面最多包含5個文件 
delete noprompt obsolete;
release channel c1;
}
#end


二、使用linux的crontab設(shè)置自動執(zhí)行備份
復(fù)制代碼 代碼如下:

crontab -e

按Enter后,可以像vi編輯器一樣輸入下面內(nèi)容
復(fù)制代碼 代碼如下:

0 1 * * 0 /home/oracle/BackupFull.sh >>/home/oracle/BackupFull.log
0 1 * * 3 /home/oracle/BackupFull.sh >>/home/oracle/BackupFull.log
30 1 * * 1-2 /home/oracle/Incrl.sh >>/home/oracle/Incr.log
30 1 * * 4-6 /home/oracle/Incrl.sh >>/home/oracle/Incr.log

查看crontab內(nèi)容:crontab -l
注:上面意思是把全庫備份日志寫到/home/oracle/BackupFull.log文件中,而增量備份日志寫到/home/oracle/Incr.log中
周日和周三凌晨1:00執(zhí)行0級全庫備份,周一、二、四、五、六凌晨1:30執(zhí)行增量備份

您可能感興趣的文章:
  • linux find下如何統(tǒng)計一個目錄下的文件個數(shù)以及代碼總行數(shù)的命令
  • Linux命令學(xué)習(xí)總結(jié)之rmdir命令
  • Linux命令學(xué)習(xí)總結(jié)之rm命令
  • Linux命令替換rm命令防止誤刪除
  • linux中rmdir命令使用詳解
  • linux的一個find命令配合rm刪除某天前的文件方法

標(biāo)簽:蘇州 大興安嶺 遼寧 贛州 玉樹 來賓 長沙 棗莊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《linux自動運(yùn)行rman增量備份腳本》,本文關(guān)鍵詞  linux,自動,運(yùn)行,rman,增量,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《linux自動運(yùn)行rman增量備份腳本》相關(guān)的同類信息!
  • 本頁收集關(guān)于linux自動運(yùn)行rman增量備份腳本的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章