3.tnsping
测试
三、
catalog
目录服务器上设置。
1.
创建目录表空间
sqlplus sys/oracle@catalog as sysdba
create tablespace rman_tbs datale '/u01/app/oracle/oradata/catalog/rmantbs.dbf' size 200m
autoextend on;
2.
创建
RMAN
用户并授权
create user rman idened by rman default tablespace rman_tbs temporary tablespace temp;
grant connect,resource,recovery_catalog_owner,unlimited tablespace to rman;
3.rman
登录到
catalog
服务器
rman catalog rman/rman@catalog
4.
创建目录服务相关表
create catalog tablespace rman_tbs;
5.
登录
catalog
数据库查看表
评论