如果我們的當前在線日志文件或者是active的日志文件損壞而且又沒有備份我們就只能通過_allow_resetlogs_corruption的方式來強制open resetlogs打數據庫但是有的我們會遇見SCN不一致而在打開過程中出現的ora 的錯誤
那麼這個錯誤的含義是A data block SCN is ahead of the current SCN
The ORA [] occurs when an SCN is compared to the dependent SCN
stored in a UGA variable If the SCN is less than the dependent SCN then we signal the ORA [] internal error
像這樣的錯誤我們都可以在alert_mylifelog中看到類似的信息
ORA: internal error code arguments: [] [] [] [] [] [] [] []
我們可以通過增進SCN來解決這個問題
如果數據庫在open狀態下
可以alter session set events immediate trace name ADJUST_SCN level x
如果數據庫在mount狀態下
可以alter session set events trace name ADJUST_SCN level x
注:level一般為則會增進SCN 億 ( billion) (**)通常Level 已經足夠也可以根據實際情況適當調整
From:http://tw.wingwit.com/Article/program/Oracle/201311/17505.html