使用RMAN複製活動資料庫(檔案路徑不同)

hooca發表於2015-06-08
OS:Oracle Linux 5u8
DB:11.2.0.4

路徑相同的情況下,見:http://blog.itpub.net/22621861/viewspace-1431461/

1. 為輔助資料庫建立密碼檔案(檔名必須以orapw開頭)

點選(此處)摺疊或開啟

  1. orapwd file=$ORACLE_HOME/dbs/orapwnewdb password=oracle1 entries=3
2. 為輔助資料庫建立臨時引數檔案
最好從目標資料庫建立然後複製過去(前提是有相同的記憶體大小),以下引數有必要多確認


點選(此處)摺疊或開啟

  1. DB_NAME=jun
  2. DB_BLOCK_SIZE=8192
  3. DB_RECOVERY_FILE_DEST=/oracledata/fra
  4. DB_RECOVERY_FILE_DEST_SIZE=40G
  5. CONTROL_FILES='/oracledata/JUN/controlfile/control01.ctl', '/oracledata/fra/JUN/controlfile/control02.ctl'
  6. DB_FILE_NAME_CONVERT='/oradata/APR','/oracledata/JUN'
  7. LOG_FILE_NAME_CONVERT='/oradata/APR','oracledata/JUN','/oradata/fra/APR','/oracledata/fra/JUN'
  8. compatible=11.2.0.4.0
3. 為輔助資料庫配置靜態監聽器

點選(此處)摺疊或開啟

  1. vi $ORACLE_HOME/network/admin/listener.ora

  2. SID_LIST_LISTENER =
  3.   (SID_LIST =
  4.     (SID_DESC =
  5.       (GLOBAL_DBNAME = jun)
  6.       (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)
  7.       (SID_NAME = jun)
  8.     )
  9.   )
4. 在輔助資料庫伺服器上建立目錄,如果沒有做這一步,可能觸發如下報錯,表示引數中指定的目錄不存在:
ORA-17628: Oracle error 19505 returned by remote Oracle server

點選(此處)摺疊或開啟

  1. mkdir -p /oracledata/JUN/controlfile /oracledata/fra/JUN/controlfile
  2. mkdir -p /oracledata/JUN/datafile
5. 啟動輔助資料庫例項

點選(此處)摺疊或開啟

  1. startup nomount pfile=initjun.ora
6. 在目標資料庫上使用RMAN

點選(此處)摺疊或開啟

  1. rman target sys/oracle@apr auxiliary sys/oracle@jun
  2. RMAN>
  3. run { allocate auxiliary channel a1 device type disk;
  4.       allocate auxiliary channel a2 device type disk;
  5.       allocate channel t1 type disk;
  6.       allocate channel t2 type disk;
  7.       duplicate target database to jun from active database;
  8. }
完成!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22621861/viewspace-1691606/,如需轉載,請註明出處,否則將追究法律責任。

相關文章