主頁(yè) > 知識(shí)庫(kù) > rman備份腳本和rman增量備份腳本分享

rman備份腳本和rman增量備份腳本分享

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

一、單獨(dú)備份
1、經(jīng)典整庫(kù)備份:backup as compressed backupset database include current controlfile plus archivelog delete all input;
2、tablespace:backup tablespace 名字;
3、數(shù)據(jù)文件:backup datafile n; (n:具體的數(shù)據(jù)文件編號(hào)select file_name,file_id,tablespace_name from dba_data_files;)
4、控制文件:backup current controlfile;或者backup database include current controlfile;
5、日志文件:backup archivelog all;或者 database plus archivelog;
6、參數(shù)文件:backup spfile;
7、全庫(kù)備份腳本:

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

run{  
allocate channel c1 type disk;  
backup full tag ‘dbfull' format ‘/backup/full%u_%s_%p' database  
include current controlfile;  
sql ‘a(chǎn)lter system archive log current'; #在數(shù)據(jù)庫(kù)進(jìn)行全備份完成之后,需要執(zhí)行該條命令將當(dāng)前日志歸檔,備份歸檔日志時(shí)應(yīng)該包括最后生成的歸檔
backup filesperset 3 format ‘/backup/arch%u_%s_%p'#filesperset 3設(shè)定每個(gè)備份集里文件不超過(guò)3個(gè) 
archivelog all delete input; #備份歸檔可選,可以單獨(dú)定期備份  
release channel c1;   
}

二、增量備份

1、0級(jí)增量備份

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

run{  
allocate channel c1 type disk;  
backup incremental level 0 tag ‘db0' format ‘/backup/db0%u_%s_%p'database
include current controlfile;  ;  
sql 'alter system archive log current';#在數(shù)據(jù)庫(kù)進(jìn)行全備份完成之后,需要執(zhí)行該條命令將當(dāng)前日志歸檔,備份歸檔日志時(shí)應(yīng)該包括最后生成的歸檔
backup filesperset 3 format ‘/backup/arch%u_%s_%p'#filesperset 3設(shè)定每個(gè)備份集里文件不超過(guò)3個(gè)
archivelog all delete input; #備份歸檔可選,可以單獨(dú)定期備份  
release channel c1;   

2、1級(jí)備份腳本

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

run{  
allocate channel c1 type disk;    
backup incremental level 1 tag ‘db1' format ‘/backup/db1%u_%s_%p'  
database skip readonly include current controlfile;     
backup filesperset 3 format ‘/backup/arch%u_%s_%p'#filesperset設(shè)定每個(gè)備份集里文件不超過(guò)3個(gè)
archivelog all delete input; #備份歸檔可選,可以單獨(dú)定期備份  
release channel c1;    
}

您可能感興趣的文章:
  • catalog方式的rman備份與恢復(fù)示例
  • win平臺(tái)oracle rman備份和刪除dg備庫(kù)歸檔日志腳本
  • ORACLE 數(shù)據(jù)庫(kù)RMAN備份恢復(fù)
  • rman配置及rman常用命令操作
  • rman恢復(fù)方案和oracle異機(jī)恢復(fù)
  • .NET性能調(diào)優(yōu)之一:ANTS Performance Profiler的使用介紹
  • High Performance JavaScript(高性能JavaScript)讀書(shū)筆記分析
  • Oracle RMAN快速入門(mén)指南
  • JDBCTM 指南:入門(mén)3 - DriverManager
  • linux自動(dòng)運(yùn)行rman增量備份腳本

標(biāo)簽:玉樹(shù) 贛州 遼寧 來(lái)賓 蘇州 長(zhǎng)沙 大興安嶺 棗莊

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