1. 程式人生 > >ORA-00265 要求例項恢復, 無法設定 ARCHIVELOG 模式

ORA-00265 要求例項恢復, 無法設定 ARCHIVELOG 模式

在更改資料庫歸檔模式時碰到ORA-00265錯誤 SQL> alter database archivelog; 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 資料庫已經關閉。 已經解除安裝資料庫。 例程已經關閉。 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; 資料庫已更改。