上QQ阅读APP看书,第一时间看更新
3.1.3 配置恢复目录数据库
在第一年中,大多数情况下恢复目录仓库只要有150MB的可用空间便足以满足要求;从长远来看,根据需要在恢复目录中管理的数据库数量,每次自动扩展50MB即可。对于在目录中注册的每个数据库,至少要有15MB。总体来说,与TB级数据仓库相比,这些少量空间真是微不足道。
使用SYSDBA权限连接到仓库数据库(在本例中为RCAT数据库),并在RMAN表空间中创建恢复目录,如下所示:
[oracle@tettnang ~]$ . oraenv ORACLE_SID = [oracle] ? rcat The Oracle base remains unchanged with value /u00/app/oracle [oracle@tettnang ~]$ sqlplus / as sysdba SQL*Plus: Release 12.1.0.1.0 Production on Tue Feb 18 14:46:11 2014 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production With the Partitioning, Automatic Storage Management, OLAP, Advanced Analytics and Real Application Testing options SQL> create tablespace rman datafile '+data' size 150m 2 autoextend on next 50m; Tablespace created. SQL>