【DataGuarad】ORA-1153 trying to turn on Flashback for Physical Standby Database
當試圖開啟備庫的flashback功能時報如下錯誤:
SQL> alter database flashback on;
alter database flashback on
*
ERROR at line 1:
ORA-01153: an incompatible media recovery is active
原因:備庫還在應用日誌
ORA-1153, 00000, "an incompatible media recovery is active"
// *Cause: Attempted to start an incompatible media recovery or open resetlogs
// during media recovery or RMAN backup . Media recovery sessions
// are incompatible if they attempt to recover the same data file.
// Incomplete media recovery or open resetlogs is incompatible with
// any media recovery. Backup or restore by RMAN is incompatible
// with open resetlogs
// *Action: Complete or cancel the other media recovery session or RMAN backup
解決方法:先停止應用,然後開啟閃回,再次開始應用!
SQL> alter database recover managed standby database cancel;
Database altered.
SQL> alter database flashback on;
Database altered.
SQL> alter database recover managed standby database disconnect from session;
Database altered.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-709060/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Physical Standby上開啟flashback database實驗日誌Database
- Convert a Physical Standby Database into a Snapshot Standby DatabaseDatabase
- ORA-38760: This database instance failed to turn on flashback databaseDatabaseAI
- Physical Standby Database 切換到 Snapshot Standby DatabaseDatabase
- Oracle DG建立Physical Standby DatabaseOracleDatabase
- Creating a Physical Standby DatabaseDatabase
- Performing a Failover to a Physical Standby DatabaseORMAIDatabase
- ORA-38760: This database instance failed to turn on flashback database 第三篇DatabaseAI
- ORA-38760: This database instance failed to turn on flashback database 錯誤解決DatabaseAI
- Oracle10G Physical Standby Database setupOracleDatabase
- Performing a Switchover to a Physical Standby Database and failoverORMDatabaseAI
- oracle實驗記錄 (flashback,physical standby resetlogs)Oracle
- ORACLE10g DataGuard 配置Physical Standby DatabaseOracleDatabase
- oracle 10g physical standby database creationOracle 10gDatabase
- Recover physical standby database after loss of archive log(2)DatabaseHive
- 同事總結的 : 用RMAN建立Physical Standby DatabaseDatabase
- oracle10g data guard(dg)__flashback_physical databaseOracleDatabase
- oracle 9i physical standby database狀態查詢OracleDatabase
- Using RMAN Incremental Backups to Roll Forward a Physical Standby DatabaseREMForwardDatabase
- Brief description of Oracle physical standby database configuration and managementOracleDatabase
- Brief description of Oracle physical standby database configuration and managemeOracleDatabase
- Recover physical standby database after loss of archive log – roll forward(轉)DatabaseHiveForward
- Bug 13250486 : ADD STANDBY DATABASE FOR TARGET WITH FLASHBACK ON FAILS WITH ERRDatabaseAI
- Oracle physical standbyOracle
- Creating a Physical Standby using RMAN DUPLICATE FROM ACTIVE DATABASEDatabase
- ORACLE10G DG配置下Physical Standby Database的管理OracleDatabase
- 在Oracle DG Standby庫上啟用flashback database功能OracleDatabase
- oracle 9i physical standby database 中v$database switchover_status的含義OracleDatabase
- oracle 9i physical standby database 上的v$archived_logOracleDatabaseHive
- Step By Step Guide To Create Physical Standby Database Using RMAN [ID 469493.1]GUIIDEDatabase
- DataGuard:Physical Standby Switchover
- 【DataGuarad】邏輯遷移與standby備庫
- Physical Database LimitsDatabaseMIT
- Flashback DatabaseDatabase
- DataGuard:Physical Standby FailoverAI
- Oracle11g的Dataguard測試,建立物理備庫(Physical Standby Database)OracleDatabase
- flashback技術之---flashback databaseDatabase
- Oracle Physical Database LimitsOracleDatabaseMIT