rman 建立catalog庫
首先在catalog庫,建立一個使用者和一個表空間,並賦予connect,resource,recovery_catalog_owner角色給新建使用者。
SQL> create tablespace rmants datafile '/ora10g/oradata/rmants01.dbf' size 200M;
Tablespace created.
SQL> create user rman identified by rman default tablespace rmants;
User created.
SQL> grant connect,resource to rman;
Grant succeeded.
SQL> grant recovery_catalog_owner to rman;
Grant succeeded.
SQL> alter user rman quota unlimited on rmants;
User altered.
SQL> select * from dba_sys_privs a where a.grantee='RMAN';
GRANTEE PRIVILEGE ADM
------------------------------ ---------------------------------------- ---
RMAN UNLIMITED
TABLESPACE NO
其次,在需要配置備份的機器上配置客戶端連線,連線catalog庫,連線資訊如下
CATALOG =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.24.22.150)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = S3P)
(INSTANCE_NAME = ora10g)
)
)
對該連線進行測試[oracle@oracle admin]$ tnsping catalog
TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 10-MAY-2013 15:03:20
Copyright (c) 1997, 2011, Oracle. All rights reserved.
Used parameter files:
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.24.22.150)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = S3P) (INSTANCE_NAME = ora10g)))
OK (0 msec)
[oracle@oracle admin]$
最後,在需要備份的資料庫使用rman進行註冊
[oracle@oracle admin]$ rman target / catalog rman/rman@catalog #該命令連線到了catalog庫
Recovery Manager: Release 11.2.0.3.0 - Production on Fri May 10 15:04:32 2013
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
connected to target database: RESTART (DBID=648727412)
connected to recovery catalog database
RMAN> create catalog tablespace rmants;
recovery catalog created
RMAN> register database; #註冊該資料庫
database registered in recovery catalog
starting full resync of recovery catalog
full resync complete
RMAN>
後續就可以進行正常的資料庫備份了,其備份資訊將儲存在catalog庫了。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/11590946/viewspace-1068516/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- RMAN備份 建立catalog資料庫資料庫
- 【RMAN】catalog資料庫資料庫
- 建立RMAN catalog實現物理備份
- 建立catalog 資料庫資料庫
- 建立CATALOG資料庫。資料庫
- 基於catalog 建立RMAN儲存指令碼指令碼
- rman建立catalog過程及問題處理
- oracle rman catalogOracle
- Oracle Rman Catalog的建立方法和備份原理Oracle
- rman catalog 命令所能catalog 的物件物件
- RMAN - catalog start with命令
- 建立catalog並註冊資料庫資料庫
- 【Oracle】rman upgrade catalogOracle
- rman中的catalog命令!
- upgrade oracle rman catalogOracle
- rman連線catalog註冊資料庫問題資料庫
- catalog備份資料庫及RMAN儲存指令碼資料庫指令碼
- 【備份恢復】RMAN catalog 恢復目錄資料庫資料庫
- RMAN Catalog環境下異機全庫恢復例項
- RMAN DUPLICATE建立DataGuard物理備庫
- 使用RMAN建立Duplicate資料庫資料庫
- 利用RMAN建立STANDBY資料庫資料庫
- 使用rman建立standby資料庫資料庫
- 【轉】RMAN建立duplicate資料庫資料庫
- RMAN Catalog 學習與測試
- 中小型資料庫 RMAN CATALOG 備份恢復方案(二)資料庫
- 中小型資料庫 RMAN CATALOG 備份恢復方案(一)資料庫
- 建立恢復目錄catalog並註冊目標庫
- RMAN中catalog和nocatalog區別
- RMAN Catalog 和 Nocatalog 的區別
- 使用RMAN恢復目錄(catalog)解析
- 使用RMAN建立物理Standby資料庫資料庫
- RMAN duplicate 建立standby RAC資料庫資料庫
- 利用RMAN建立備用資料庫資料庫
- RMAN 11g Import catalog fails RMAN-6429 (Doc ID 457392.1)ImportAI
- 使用RMAN建立STANDBY資料庫——RMAN使用者手冊資料庫
- 使用RMAN建立資料庫備份庫(筆記)資料庫筆記
- Oracle 備份恢復篇之RMAN catalogOracle