duplicate standby database 報ORA-05507錯誤解決方法
今天在給客戶實施dataguard時,在duplicate standby database時報ORA-05507 ERROR
主庫備份指令碼如下:
rman target / nocatalog
backup database format '/rman/%U.bak' include current controlfile for standby;
然後在備庫,用duplicate命令線上進行復制時 報以下錯誤
rman target nocatalog auxiliary /
duplicate target database for standby nofilenamecheck;
報rman-05507 standby controlfile checkpoint (62423113) is more recent than duplication point in time (62423113)
透過查詢metalink
Problem Description
--------------------
You notice that the checkpoint of the standby controlfile is more recent than
the specified RMAN duplication point in time or the last archivelog.
Solution Description
---------------------
If an explicit point in time was specified, you can change it to be
the same as the controlfile checkpoint.
Or, you can archive (and backup/copy)the current log. Switching the online
redolog and backup the archive should get everything in sync.
也就是說控制檔案比較新,而資料檔案比較舊,這時需要增進檢查點,更新資料檔案
可以用alter system archive log current命令解決
備份指令碼如下:增加alter system archive log current
rman target / nocatalog
backup database format '/rman/%U.bak' include current controlfile for standby;
sql 'alter system archive log current';
Example:
--------
RMAN-05507: standby controlfile checkpoint (29952631) is more recent than
duplication point in time (29952625)
Try using backing up current log in backup script. with the current log switch
and backing up the archivelog.
run {
--use type as appropriate
allocate channel c1 type 'SBT_TAPE' parms
---use env as appropriate of your location
"ENV=(TDPO_OPTFILE=e:\oracle\wpl\817\database\tdpo.opt)";
backup database include current controlfile for standby;
sql "alter system archive log current";
backup archivelog all;
}
References:
-----------
Additional Search Words
-----------------------
rman-05507 standby controlfile duplicate db
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-630416/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- standby新增檔案錯誤的解決方法
- 解決 Inkscape 報錯 Duplicate 問題
- dbfread報錯ValueError錯誤解決方法Error
- Oracle DataGuard Standby database ID mismatch錯誤OracleDatabase
- 11g rman新特性 duplicate target database for standby from active databaseDatabase
- Nginx報504 gateway timeout錯誤的解決方法NginxGateway
- Oracle 11g Data Guard 使用 duplicate from active database 建立 standby databaseOracleDatabase
- Oracle 11g Data Guard 使用duplicate from active database 建立 standby databaseOracleDatabase
- ORA-38760: This database instance failed to turn on flashback database 錯誤解決DatabaseAI
- 10.2.0.3 升級到 10.2.0.4 database upgrade 報ORA-03113錯誤解決方法Database
- 解決tensorboard報錯ValueError: Duplicate plugins for name projectorORBErrorPluginProject
- PbootCMS 404 錯誤解決方法boot
- vsftpd 錯誤:530 and 500 錯誤解決方法FTP
- rman duplicate出現PLS-00201錯誤解決
- standby上增加tempfile報錯ORA-00604,ORA-16000解決方法
- Creating a Physical Standby using RMAN DUPLICATE FROM ACTIVE DATABASEDatabase
- undefined reference to錯誤的解決方法Undefined
- AFNetworkingErrorDomain 錯誤解決方法ErrorAI
- PHP錯誤“Thisfilehasexpired”的解決方法PHP
- hive使用報錯解決方法Hive
- Linux DBCA 報ORA-12547錯誤解決方法Linux
- Qt報Multiple definition錯誤的解決QT
- duplicate databaseDatabase
- 錯誤:duplicate column name: picstitle
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- 【Oracle】ORA-00054 錯誤解決方法Oracle
- 錯誤Namenodeisinsafemode的解決方法
- Android錯誤解決方法集錦Android
- hadoop日常錯誤解決方法整理Hadoop
- ORA-04098錯誤解決方法
- ORA-25154錯誤解決方法
- npm WARN unmet dependency錯誤解決方法NPM
- 恢復備庫 activate standby database 報錯找不到standby redo - ORA-00313Database
- 幾個報錯的解決方法
- idea執行java專案main方法報build failure錯誤的解決方法IdeaJavaAIUI
- 物理備庫open報錯ORA-10458: standby database requires recoveryDatabaseUI
- RMAN duplicate databaseDatabase
- SQLyog連線MySQL8.0報2058錯誤的完美解決方法MySql