(1 )使用資料庫管理員登入oracle 資料,並為rman建立乙個恢復目錄資料庫。
sql
>
connect system
/tiger
已連線。
sql
>
create tablespace rman_tablespace
2datafile
'd:\db\rman_tablespace.dbf'
size
100m
;
表空間已建立。
(2 )然後,為恢復目錄建立資料庫使用者,並為該使用者賦予相應的許可權資訊,**如下:
sql
>
create user test_rman identified by tiger
2default tablespace rman_tablespace
3temporary tablespace temp
;
使用者已建立。
sql
>
grant connect
,resource to test_rman
;
授權成功。
sql> grant recovery_catalog_owner to test_rman;
授權成功。
上述**中,建立了乙個test_rman使用者,設定使用者預設表空間為rman_tablespace ,然後
為該使用者賦予相應的操作許可權。
(3 )最後,使用新建立的test_rman使用者在恢復目錄資料庫中建立恢復目錄。在【執行】
視窗內輸入rman target test_rman/tiger 命令啟動rman工具,詳細**如下所示。
連線到目標資料庫:
orcl
(dbid
=1283643196
)
rman
>
connect catalog test_rman
/tiger
連線到恢復目錄資料庫
rman
>
create catalog
;
恢復目錄已建立
配置RMAN恢復目錄
1 建立表空間 使用者 授權 sql create tablespace ts rman datafile oradata rman.dbf size 100m sql create user rman identified by rman default tablespace ts rman sq...
RMAN簡明教程之七 恢復目錄與恢復目錄的使用
oracle版本9因為控制檔案的自動備份,可以很大程度成不需要使用恢復目錄,但是使用恢復目錄的也有如下好處 有些命令只被恢復目錄支援 對於9i來說,也就是專門操作恢復目錄的語句而已 能保留更多的歷史備份資訊 乙個恢復目錄能管理與備份多個目標資料庫 如果在9i以前,丟失控制檔案而沒有恢復目錄將是難以恢...
RMAN簡明教程之七 恢復目錄與恢復目錄的使用
oracle版本9因為控制檔案的自動備份,可以很大程度成不需要使用恢復目錄,但是使用恢復目錄的也有如下好處 有些命令只被恢復目錄支援 對於9i來說,也就是專門操作恢復目錄的語句而已 能保留更多的歷史備份資訊 乙個恢復目錄能管理與備份多個目標資料庫 如果在9i以前,丟失控制檔案而沒有恢復目錄將是難以恢...