Oracle9i啟動歸檔

oracle_ace發表於2007-12-25

簡單記錄一下:
SQL> startup mount;
ORACLE 例程已經啟動。

Total System Global Area  118562308 bytes
Fixed Size                   454148 bytes
Variable Size              75497472 bytes
Database Buffers           41943040 bytes
Redo Buffers                 667648 bytes
資料庫裝載完畢。
SQL> alter system set log_archive_start=TRUE scope=both;
alter system set log_archive_start=TRUE scope=both
                 *
ERROR 位於第 1 行:
ORA-02095: 無法修改指定的初始化引數


SQL> alter system set log_archive_start=TRUE scope=spfile;

系統已更改。

SQL> alter system set log_archive_dest="D:\oracle\archived_dest" scope=spfile;

系統已更改。

SQL> alter database archivelog;

資料庫已更改。

SQL> archive log start
已處理的語句
SQL> shutdown abort;
ORACLE 例程已經關閉。
SQL> startup
ORACLE 例程已經啟動。

Total System Global Area  118562308 bytes
Fixed Size                   454148 bytes
Variable Size              75497472 bytes
Database Buffers           41943040 bytes
Redo Buffers                 667648 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> archive log list;
資料庫日誌模式            存檔模式
自動存檔             啟用
存檔終點            D:\oracle\archived_dest
最早的概要日誌序列     2
下一個存檔日誌序列   4
當前日誌序列           4
SQL> select group#,status from v$Log;

    GROUP# STATUS
---------- ----------------
         1 INACTIVE
         2 INACTIVE
         3 CURRENT

SQL> alter system switch logfile;

系統已更改。

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

相關文章