标签:should track com iat ring 文件中 依据 eth ber
http://docs.oracle.com/cd/E11882_01/backup.112/e10643/rcmsynta020.htm#RCMRF126
数据文件求不在相应的路径下,实际文件会採用OMF来管理;这时须要使用:
1》RMAN catalog 和 switch database to copy
2》alter database rename file to 和
3》switch datafile file# to copy 来修正控制文件的信息;
对于redolog 假设没有设置DB_RECOVERY_FILE_DEST, or DB_CREATE_ONLINE_LOG_DEST_n. 则会使用DB_CREATE_FILE_DEST 參数指定的文件夹来存放
SQL> show parameter DB_CREATE_ONLINE_LOG_DEST
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
db_create_online_log_dest_1 string
db_create_online_log_dest_2 string
db_create_online_log_dest_3 string
db_create_online_log_dest_4 string
db_create_online_log_dest_5 string
若单独指定 db_create_online_log_dest_* 參数。则redolog member 会冗余放到这些单独指定的文件夹下
Supported options for naming online redo logs duplicated from Oracle-managed files are DB_CREATE_FILE_DEST,DB_RECOVERY_FILE_DEST, or DB_CREATE_ONLINE_LOG_DEST_n.
----DB_CREATE_ONLINE_LOG_DEST_n 參数解释,为redolog,control file指定存放文件夹,指定多个则多路复用
DB_CREATE_ONLINE_LOG_DEST_n (where n = 1, 2, 3, ... 5) specifies the default location for Oracle-managed control files and online redo logs. If more than one DB_CREATE_ONLINE_LOG_DEST_n parameter is specified,
then the control file or online redo log is multiplexed across the locations of the other DB_CREATE_ONLINE_LOG_DEST_n parameters. One member of each online redo log is created in each location, and one control file is created in each location.
Specifying at least two parameters provides greater fault tolerance for the control files and online redo logs if one of the locations should fail.
If a file system directory is specified as the default location, then the directory must already exist; Oracle does not create it. The directory must have appropriate permissions that allow Oracle to create files in it. Oracle generates unique names for the
files, and a file thus created is an Oracle Managed File.
对于文件系统而言,指定的文件夹必须权限准确,且已经存在;假设没有,oracle 不会自己主动创建
关于rman duplicate 一些比較重要的知识点--系列三
标签:should track com iat ring 文件中 依据 eth ber
原文地址:http://www.cnblogs.com/cxchanpin/p/7152284.html