使用rman備份的指令碼
全庫備份指令碼:
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup full tag 'dbfull' format
6> '/u01/app/backup/fulldb_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
0級備份指令碼:
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup incremental level 0 tag 'indb0' format
6> '/u01/app/backup/indb0_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
1級備份指令碼:
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup incremental level 1 tag 'indb1' format
6> '/u01/app/backup/indb1_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup full tag 'dbfull' format
6> '/u01/app/backup/fulldb_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
0級備份指令碼:
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup incremental level 0 tag 'indb0' format
6> '/u01/app/backup/indb0_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
1級備份指令碼:
run{
2> allocate channel c1 type disk;
3> allocate channel c2 type disk;
4> allocate channel c3 type disk;
5> backup incremental level 1 tag 'indb1' format
6> '/u01/app/backup/indb1_%U'
7> database;
8> sql 'alter system switch logfile';
9> release channel c1;
10> release channel c2;
11> release channel c3;
12> }
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29800581/viewspace-1252152/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- rman 備份指令碼指令碼
- rman備份指令碼指令碼
- Rman備份的shell指令碼指令碼
- rman備份和增量備份指令碼指令碼
- rman 全備份指令碼指令碼
- rman增量備份指令碼指令碼
- windows rman備份指令碼Windows指令碼
- RMAN常用備份指令碼指令碼
- oracle RMAN備份指令碼Oracle指令碼
- 分享Oracle Rman的備份指令碼Oracle指令碼
- [Oracle] rman備份的指令碼(1)Oracle指令碼
- rman備份的shell指令碼(例子)指令碼
- ORACLE RMAN備份的指令碼配置Oracle指令碼
- oracle資料庫使用rman備份指令碼Oracle資料庫指令碼
- [Oracle] rman備份指令碼(2)Oracle指令碼
- oracle rman備份指令碼收集Oracle指令碼
- Windows下RMAN備份指令碼Windows指令碼
- RMAN全庫備份指令碼指令碼
- RMAN備份Shel指令碼示例指令碼
- rman的備份檢視的指令碼指令碼
- RAC模式下的備份策略以及RMAN備份指令碼模式指令碼
- 我在linux 中使用rman 備份指令碼Linux指令碼
- oracle rman 定時備份指令碼Oracle指令碼
- RMAN定時全備份指令碼指令碼
- 轉貼:RMAN備份指令碼(Unix)指令碼
- rman 自動備份指令碼-windows指令碼Windows
- RAC模式下的備份策略以及RMAN備份指令碼(轉)模式指令碼
- RAC模式下的備份策略以及RMAN備份指令碼(ZF)模式指令碼
- 一個完整的RMAN備份指令碼(轉)指令碼
- linux 下RMAN備份shell指令碼Linux指令碼
- oracle11g Rman 備份指令碼Oracle指令碼
- RMAN備份歸檔日誌指令碼指令碼
- windows下rman自動備份指令碼Windows指令碼
- RMAN備份恢復測試指令碼指令碼
- 【RMAN】RMAN備份恢復3 RMAN增量備份指令碼與crontab計劃任務指令碼
- Nocatalog 下的RMAN 增量備份 shell指令碼指令碼
- 一個較完整的RMAN增量備份指令碼指令碼
- 簡單有效的windows下的RMAN備份指令碼Windows指令碼