熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

手把手教你創建RMANCATAGORY

2022-06-13   來源: Oracle 

第一步創建RMAN CATAGORY儲存信息的表空間和管理Catagory的用戶
   sqlplus /nolog
   conn / as sysdba
   create tablespace rman_ts datafile d:oracleordataorcl man_tsdbf size M extend management local uniform size K;
   create user rman identified by rman default tablespace rman_ts quota unlimited on rman_ts;

第二步授予用戶rman管理catagory和相關的權限
    grant recover_catagory_owner to rman;
    grant connect resource to rman;

第三步登陸rman
    c:>rman catagory rman/rman log=cataloglog

第四步創建rman catagory 
    rman>create catalog tablespace rman_ts;
    rman>exit;

第五步登陸catagory第一次連接目標數據庫(必須用sysdba)並注冊以後直接連接本地的數據庫第一次也要注冊以後如果有變化只要同步即可
   c:>rman target sys/oracle@orcl catalog rman/rman
   rman>register database;


至此已經成功創建了rman catagory並且注冊了一個目標數據庫

From:http://tw.wingwit.com/Article/program/Oracle/201311/16574.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.