一、單獨(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增量備份腳本