設定歸檔模式

sky850623發表於2015-03-26
SQL> startup mount force;
ORACLE 例程已經啟動。

Total System Global Area  167772160 bytes
Fixed Size                  1247900 bytes
Variable Size              79693156 bytes
Database Buffers           83886080 bytes
Redo Buffers                2945024 bytes
資料庫裝載完畢。
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 模式
還是不能切換,說明切換模式之前資料庫必須是乾淨的mount.
這是規定,跟有沒有恢復到一致性沒有關係
SQL> shutdown immediate;
ORA-01109: 資料庫未開啟


已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup mount;
ORACLE 例程已經啟動。

Total System Global Area  167772160 bytes
Fixed Size                  1247900 bytes
Variable Size              79693156 bytes
Database Buffers           83886080 bytes
Redo Buffers                2945024 bytes
資料庫裝載完畢。
SQL> alter database archivelog;
資料庫已更改。

SQL> alter database open;
資料庫已更改。
SQL> select name ,log_mode from v$database;

NAME      LOG_MODE
--------- ------------
ORCL      ARCHIVELOG


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

相關文章