本文主要是介绍OCM_Session3_1_Create an RMAN Catalog,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. Create an RMAN Catalog- 1.1 Create a tablespace in your EMREP database called RC_DATA.
- 1.1.1 Make it locally managed.
- 1.1.2 Create it with one datafile of size 100MB.
参考联机文档:
Backup and Recovery Advanced User's Guide==>10 Managing the Recovery Catalog
http://docs.oracle.com/cd/B19306_01/backup.102/b14191/rcmcatdb.htm#i1011365
创建一个表空间名RC_DATA在EMREP数据库里,本地管理,文件大小100M
[oracle@ocm2 ~]$ export ORACLE_SID=EMREP
[oracle@ocm2 ~]$ sqlplus "/as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on Fri Mar 21 11:35:42 2014
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, Oracle Label Security, OLAP and Data Mining options
SQL> create tablespace rc_data datafile '/u01/app/oracle/oradata/EMREP/rc_data01.dbf' size 100m
2 extent management local;
Tablespace created.
这篇关于OCM_Session3_1_Create an RMAN Catalog的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!