EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 1
1. 事先要修改目標庫中初始引數中的db_name為源資料庫名稱,這裡假設修改db_name為GERPB,其它參
數酌情修改(比如加快RMAN恢復)。
2. 恢復介質準備 。
將RMAN備份透過NAS掛載到目標資料庫伺服器上(或複製到本地),
3. 恢復控制檔案。
在目標資料庫上恢復控制檔案。
rman target / nocatalog
RMAN> startup nomount;
RMAN> restore controlfile from '/gerpnas/rmanbak/fullbak_CF_c-3148051840-20130822-00';
RMAN> alter database mount;
4.登陸源資料庫獲得資料檔案路徑資訊。
select name from v$datafile;
備註: RMAN備份在歸檔模式下一般是會alert system switch logfile,並備份歸檔日誌,等同於
備份了online redo檔案,非歸檔模式不能online rman backup,online redo對備份沒有用。故RMAN
備份不備份online redo。也不備份tempfile。在下面的RMAN restore指令碼中也不需要對這兩類檔案
做rename轉換。
5. 編寫restore datafile的指令碼。
指令碼restore.rman如下(一般在後臺執行):
catalog start with '/gerpnas/rmanbak/';
(備份集所在路徑一定要用“/”結尾,不然找不到真實的路徑)
run{
allocate channel c1 type disk;
allocate channel c2 type disk;
set newname for datafile '/data/d08/gerpb/datafile/system.323.717426563' to‘+DATA’;
… (為節省篇幅,省略大部分資料檔案)
set newname for datafile '/data/d15/gerpb/datafile/appslx.265.743248917' to ‘+DATA’;
restore database force;
switch datafile all;
}
後臺執行命令:
$nohup rman target / cmdfile=/home/dgerp/restore.rman log=/home/dgerp/rman.log &
Restore完成後還需要進行recover。
$rman target /
RMAN> recover database ; (recover最終都會以出錯找不到歸檔日誌結束)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28211342/viewspace-2129913/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 3Oracle資料庫
- EBS R12克隆 - Oracle11.2.0.3 EBS資料庫克隆(RMAN恢復) 2Oracle資料庫
- EBS R12 克隆備份指令碼指令碼
- Oracle EBS R12.1.1 應用克隆 - 1Oracle
- Oracle EBS R12.1.3克隆文件Oracle
- 克隆資料庫之RMAN複製(二)資料庫
- 克隆資料庫之RMAN複製(一)資料庫
- Oracle EBS R12.1.1 應用克隆 - 4Oracle
- Oracle EBS R12.1.1 應用克隆 - 3Oracle
- Oracle EBS R12.1.1 應用克隆 - 2Oracle
- EBS R12 資料庫初始引數參考資料庫
- RedHat Linux5 下克隆EBS R12 開啟Form 報錯 FRM-92101RedhatLinuxORM
- 【APP_ORACLE】Oracle EBS R12.1標準克隆(包括資料庫層和應用層)APPOracle資料庫
- 2.10 克隆資料庫資料庫
- 使用duplicate克隆資料庫資料庫
- EBS 線上克隆DB和應用的一次實戰
- RMAN恢復資料庫資料庫
- EBS R12系統補丁實施快速回退(恢復)措施
- Oracle EBS R12 "OutOfMemoryError"OracleError
- 基於 RMAN 的同機資料庫克隆資料庫
- 談談Oracle EBS R12Oracle
- EBS R12 官方文件地址
- 資料庫克隆資料庫
- 2.10.1.2 使用CloneDB克隆資料庫資料庫
- rman 全庫恢復asm資料庫ASM資料庫
- rman 可否克隆rac資料庫到另外一個rac環境的資料庫中?資料庫
- 資料庫resetlogs後進行rman恢復1資料庫
- RMAN 資料庫克隆檔案位置轉換方法資料庫
- oracle之rman恢復資料庫Oracle資料庫
- LianTong rman資料庫恢復資料庫
- 靜默建立oracle資料庫及克隆資料庫Oracle資料庫
- oracle EBS R12 FORM 編譯OracleORM編譯
- EBS R12的Concurrent Request ID和資料庫Session ID的關聯資料庫Session
- 【RMAN】rman使用NORESTELOGS 方式恢復資料庫REST資料庫
- 【EBS】Oracle EBS 之 OM 模組整理(1)Oracle
- 利用RMAN恢復整個資料庫資料庫
- Oracle EBS R12 常用命令Oracle
- EBS Services in Oracle Apps R12OracleAPP