ORA-00265錯誤分析

xinxinhg發表於2004-11-09

要求例程恢復,無法設定 ARCHIVELOG 模式!

[@more@]

SQL> alter database archivelog;
alter database archivelog
*
ERROR 位於第 1 行:
ORA-00265: 要求例程恢復,無法設定 ARCHIVELOG 模式

解決辦法:

SQL> shutdown immediate
ORA-01109: 資料庫未開啟


已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup restrict    ----注意這一步是必須的.
ORACLE 例程已經啟動。

Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> shutdown
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup mount
ORACLE 例程已經啟動。

Total System Global Area  135338868 bytes
Fixed Size                   453492 bytes
Variable Size             109051904 bytes
Database Buffers           25165824 bytes
Redo Buffers                 667648 bytes
資料庫裝載完畢。
SQL> alter database archivelog;

資料庫已更改。

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