码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 学习之RMAN(十四)Catalog

时间:2015-08-01 06:33:45      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:catalog

 Catalog是一个独立的数据库, 它用来存储从目标数据库的控制文件中获取的RMAN 元数据。RMAN 将有关数据库结构、归档重做日志、备份集以及数据文件副本的信息从目标数据库的控制文件传播到恢复目录中。当要管理多个目标数据库时,应该使用目录。

  先看创建Catalog的步骤

技术分享


1. 创建表空间

SQL> create tablespace rman_ts ;

Tablespace created.

SQL>

2. 创建Catalog Owner

SQL> CREATE USER rman IDENTIFIED BY rman DEFAULT TABLESPACE rman_ts QUOTA UNLIMITED ON rman_ts;
User created.

3. 赋权限

SQL> GRANT recovery_catalog_owner TO rman;

Grant succeeded.
SQL> GRANT connect, resource TO rman;

Grant succeeded.

4. 创建Catalog

现在target数据库配置一个catdb的连接字符串,指向catlog的数据库。

11gdg-> rman catalog rman/rman@catdb

Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 9 11:36:49 2015

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

connected to recovery catalog database

RMAN> create catalog tablespace rman_ts;

recovery catalog created

5.连接target数据库,使用Catalog 。

11gdg-> rman target / catalog rman/rman@catdb

Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 9 11:52:30 2015

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

connected to target database: DEVDB (DBID=789087786, not open)
connected to recovery catalog database

RMAN> 
11gdg-> rman target /                        

Recovery Manager: Release 11.2.0.3.0 - Production on Thu Jul 9 11:52:53 2015

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

connected to target database: DEVDB (DBID=789087786, not open)

RMAN> connect catalog rman/rman@catdb

connected to recovery catalog database

RMAN>

6. 注册目标数据库

RMAN> register database;

database registered in recovery catalog
starting full resync of recovery catalog
full resync complete


本文出自 “叮咚” 博客,请务必保留此出处http://lqding.blog.51cto.com/9123978/1680721

Oracle 学习之RMAN(十四)Catalog

标签:catalog

原文地址:http://lqding.blog.51cto.com/9123978/1680721

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!