[Flashback]ORA-38760錯誤解決

梓沐發表於2016-02-15

資料庫在startup時,提示ORA-38760: This database instance failed to turn on flashback database錯誤,該錯誤大概意思是說資料庫啟用閃回資料庫功能失敗,造成這種情況的原因是資料庫之前開啟了閃回資料庫功能,但是閃回資料庫的備份檔案被刪除,所以資料庫在開啟時,無法找到這些檔案導致資料庫無法open

解決方法很簡單:先將資料庫閃回資料庫功能停用再啟用就可

SQL> startup

ORACLE instance started.

Total System Global Area 784998400 bytes

Fixed Size 2257352 bytes

Variable Size 478154296 bytes

Database Buffers 301989888 bytes

Redo Buffers 2596864 bytes

Database mounted.

ORA-38760: This database instance failed to turn on flashback database

SQL> alter database flashback off;

Database altered.

SQL> alter database flashback on;

Database altered.

SQL> alter database open;

Database altered.


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

相關文章