RMAN - catalog start with命令
catalog start with 是一個很好的命令. 有了這個命令後, 基本上可以不再使用catalog資料庫了 . 因為可以透過這個命令將以前的備份集資訊重新匯入到當前控制檔案中, 一般應用於使用rman恢復, 控制檔案又是舊的或者是手工建立的(這樣的控制檔案當然沒有最新的備份集的資訊), 透過catalog start with 可以將最新的備份集以及歸檔日誌檔案列表匯入到控制文中, 然後就可以進行rman的恢復了.
例如,複製備份集到 /data01 下 ,
RMAN> startup nomount;
RMAN> restore controlfile from '/data01/testdb_CF_c-3148051840-20110813-00'; # 從控制檔案備份集恢復控制檔案
RMAN> alter database mount;
catalog start with '/data01/'; (一定要用“/”結尾,不然找不到真實的路徑)
run{
allocate channel c1 type disk;
allocate channel c2 type disk;
allocate channel c3 type disk;
set newname for datafile '+DATA/icare/datafile/system.309.717426483' to '/backup/supt/suptdata/system.309.717426483';
set newname for datafile '+DATA/icare/datafile/apps_undots1.283.717426031' to '/backup/supt/suptdata/apps_undots1.283.717426031'; set newname for datafile '+DATA/icare/datafile/apps_ts_tx_data.273.717426033' to '/backup/supt/suptdata/apps_ts_tx_data.273.717426033';
set newname for datafile '+DATA/icare/datafile/apps_ts_tx_data.275.717426033' to
set newname for datafile '+DATA/icare/onlinelog/group_16.265.743248917' to '/data02/supt/suptdata/group_16.265.743248917';
restore database force;
switch datafile all;
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-716316/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- rman catalog 命令所能catalog 的物件物件
- rman中的catalog命令!
- 說說10g rman的catalog命令
- 使用Catalog命令註冊RMAN備份集
- Oracle OCP 1Z0-053 Q337(Rman Catalog Start with)Oracle
- oracle rman catalogOracle
- rman 建立catalog庫
- catalog 命令
- 【RMAN】catalog資料庫資料庫
- 【Oracle】rman upgrade catalogOracle
- upgrade oracle rman catalogOracle
- RMAN Catalog 學習與測試
- 2012-06-03 20:40 catalog start with rman備份集直接匯入控制檔案中
- RMAN中catalog和nocatalog區別
- RMAN Catalog 和 Nocatalog 的區別
- RMAN備份 建立catalog資料庫資料庫
- 使用RMAN恢復目錄(catalog)解析
- 建立RMAN catalog實現物理備份
- RMAN 11g Import catalog fails RMAN-6429 (Doc ID 457392.1)ImportAI
- Oracle 備份恢復篇之RMAN catalogOracle
- 揭秘ORACLE備份之----RMAN之五(CATALOG)Oracle
- rman catalog的配置及詳解例項
- oracle實驗記錄 (恢復-rman catalog)Oracle
- 基於catalog 建立RMAN儲存指令碼指令碼
- rman 命令
- RMAN命令
- RMAN說,我能備份(18)--RMAN中的加密備份和CATALOG加密
- Oracle RMAN練習繼續,簡單涉及CatalogOracle
- 揭祕ORACLE備份之----RMAN之五(CATALOG)Oracle
- rman建立catalog過程及問題處理
- Oracle Rman Catalog的建立方法和備份原理Oracle
- rman連線catalog註冊資料庫問題資料庫
- RMAN備份中catalog和nocatalog區別[轉]
- Oracle RMAN備份中catalog和nocatalog區別Oracle
- RMAN學習筆記_Catalog 安裝與御載筆記
- Oracle OCP IZ0-053 Q695(Rman catalog)Oracle
- RMAN命令大全
- rman(2)--命令