映像層級備份(image copies)相當於資料檔案和歸檔日誌的拷貝複製品,與原檔案在儲存空間上完全一致,如果需要做一個部分恢複(比如某一資料檔案)採用映像備份情況下只需要檢索相應的映像即可,恢複速度非常快,在某些非常情況下,可以直接switch到映像資料檔案以保證生產環境儘可能短時間的停機,事後再做一個copy到原路徑,選擇空閑時段再次swich回去。
鑒於映像備份需要佔用和生產資料檔案相同的空間,所以在資料量較大的情況下是不建議採用的,因為這種方案需要客戶為花費雙份儲存的錢,但是如果說在某庫建立之初,資料檔案不是很大,或者說某庫資料量始終較小,那麼選擇影響備份是一種極好的方案,可以在資料檔案出現物理損壞時,以最短的時間完成介質恢複。
下面介紹一些最簡單的RMAN映像備份方案
1、開啟rman塊追蹤技術
SQL> alter database enable block change tracking using file '/u01/app/oralce/oradata/orcl/block_change_track_file.f';
Database altered.
2、進行映像層級的level 0備份
run {
ALLOCATE CHANNEL "ch1" DEVICE TYPE DISK FORMAT "/u04/%U";
BACKUP AS COPY TAG 'BASE01'
INCREMENTAL LEVEL 0
DATABASE;
}
3、進行映像層級的level 1備份
$ rman target /
run {
ALLOCATE CHANNEL "ch1" DEVICE TYPE DISK FORMAT "/u04/%U";
BACKUP TAG 'incr_update'
INCREMENTAL LEVEL 1
DATABASE;
}
4、用level 1的備份update level 0 中的映像
run {
ALLOCATE CHANNEL "ch1" DEVICE TYPE DISK FORMAT "/u04/%U";
RECOVER COPY OF DATABASE WITH TAG 'BASE01';
}
實驗紀錄
1、level 0
RMAN> run {
ALLOCATE CHANNEL "ch1" DEVICE TYPE DISK FORMAT "/u04/%U";
BACKUP AS COPY TAG 'BASE01'
INCREMENTAL LEVEL 0
DATABASE;
}
2> 3> 4> 5> 6>
released channel: ORA_DISK_1
allocated channel: ch1
channel ch1: SID=32 device type=DISK
Starting backup at 05-SEP-13
channel ch1: starting datafile copy
input datafile file number=00001 name=/u01/app/oralce/oradata/orcl/system01.dbf
output file name=/u04/data_D-ORCL_I-1349053318_TS-SYSTEM_FNO-1_0coj3jug tag=BASE01 RECID=18 STAMP=825348067
channel ch1: datafile copy complete, elapsed time: 00:00:25
channel ch1: starting datafile copy
input datafile file number=00002 name=/u01/app/oralce/oradata/orcl/sysaux01.dbf
output file name=/u04/data_D-ORCL_I-1349053318_TS-SYSAUX_FNO-2_0doj3jv9 tag=BASE01 RECID=19 STAMP=825348091
channel ch1: datafile copy complete, elapsed time: 00:00:25
channel ch1: starting datafile copy
input datafile file number=00005 name=/u01/app/oralce/oradata/orcl/example01.dbf
output file name=/u04/data_D-ORCL_I-1349053318_TS-EXAMPLE_FNO-5_0eoj3k02 tag=BASE01 RECID=20 STAMP=825348107
channel ch1: datafile copy complete, elapsed time: 00:00:15
channel ch1: starting datafile copy
input datafile file number=00004 name=/u01/app/oralce/oradata/orcl/users01.dbf
output file name=/u04/data_D-ORCL_I-1349053318_TS-USERS_FNO-4_0foj3k0h tag=BASE01 RECID=21 STAMP=825348116
channel ch1: datafile copy complete, elapsed time: 00:00:03
channel ch1: starting datafile copy
input datafile file number=00003 name=/u01/app/oralce/oradata/orcl/undotbs01.dbf
output file name=/u04/data_D-ORCL_I-1349053318_TS-UNDOTBS1_FNO-3_0goj3k0l tag=BASE01 RECID=22 STAMP=825348120
channel ch1: datafile copy complete, elapsed time: 00:00:07
Finished backup at 05-SEP-13
Starting Control File and SPFILE Autobackup at 05-SEP-13
piece handle=/u01/app/Oracle/product/11.2.0/dbhome_1/dbs/c-1349053318-20130905-00 comment=NONE
Finished Control File and SPFILE Autobackup at 05-SEP-13
released channel: ch1
RMAN>
更多詳情見請繼續閱讀下一頁的精彩內容:
推薦閱讀:
Oracle基礎教程之通過RMAN複製資料庫
RMAN備份策略制定參考內容
RMAN備份學習筆記
OracleDatabase Backup加密 RMAN加密