問題:Oracle10g WinXP,用DBCA建庫之後,非歸檔模式更改為歸檔,出現報錯:
ORA-00265: 要求例程恢復, 無法設置 ARCHIVELOG 模式
解決方法:
C:\Documents and Settings\Administrator>sqlplus "/ as sysdba"
SQL*Plus: Release 10.1.0.2.0 - Production on 星期六 1月 5 22:40:56 2008
Copyright (c) 1982, 2004, Oracle. All rights reserved.
已連接到空閒例程。
SQL> startup mount
ORACLE 例程已經啟動。
Total System Global Area 171966464 bytes
Fixed Size 787988 bytes
Variable Size 145750508 bytes
Database Buffers 25165824 bytes
Redo Buffers 262144 bytes
數據庫裝載完畢。
SQL> archive log list
數據庫日志模式 非存檔模式
自動存檔 禁用
存檔終點 USE_DB_RECOVERY_FILE_DEST
最早的聯機日志序列 3
當前日志序列 5
SQL> alter database archivelog;
alter database archivelog
*
第 1 行出現錯誤:
ORA-00265: 要求例程恢復, 無法設置 ARCHIVELOG 模式
SQL> alter system switch logfile;
alter system switch logfile
*
第 1 行出現錯誤:
ORA-01109: 數據庫未打開
SQL> alter database archivelog;
alter database archivelog
*
第 1 行出現錯誤:
ORA-00265: 要求例程恢復, 無法設置 ARCHIVELOG 模式
SQL> recover database;
完成介質恢復。
SQL> alter database archivelog;
alter database archivelog
*
第 1 行出現錯誤:
ORA-00265: 要求例程恢復, 無法設置 ARCHIVELOG 模式
SQL> alter database open;
數據庫已更改。
SQL> alter system switch logfile;
系統已更改。
SQL> alter system switch logfile;
系統已更改。
SQL> shutdown immediate
數據庫已經關閉。
已經卸載數據庫。
ORACLE 例程已經關閉。
SQL> startup mount
ORACLE 例程已經啟動。
Total System Global Area 171966464 bytes
Fixed Size 787988 bytes
Variable Size 145750508 bytes
Database Buffers 25165824 bytes
Redo Buffers 262144 bytes
數據庫裝載完畢。
SQL> alter database archivelog;
數據庫已更改。
SQL> alter database open;
數據庫已更改。
SQL>