如何設定資料庫為歸檔模式

paulyibinyi發表於2007-12-13
在資料庫安裝完成後,預設為非歸檔模式,透過以下步驟將非歸檔模式轉為歸檔模式
C:\Documents and Settings\Paul Yi>sqlplus "/as sysdba"

SQL*Plus: Release 9.2.0.1.0 - Production on 星期四 6月 7 14:36:12 2007

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.


連線到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production

SQL> archive log list;
資料庫日誌模式 非存檔模式
自動存檔 禁用
存檔終點 d:\oraarc
最早的概要日誌序列 0
當前日誌序列 1
SQL> shutdown;
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup mount;
ORACLE 例程已經啟動。

Total System Global Area 101784276 bytes
Fixed Size 453332 bytes
Variable Size 75497472 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
資料庫裝載完畢。
SQL> alter database archivelog; --設為歸檔模式語句

資料庫已更改。

SQL> alter database open;

資料庫已更改。

SQL> archive log list;
資料庫日誌模式 存檔模式
自動存檔 禁用
存檔終點 d:\oraarc
最早的概要日誌序列 0
下一個存檔日誌序列 1
當前日誌序列 1
--以下語句設定為自動存檔
SQL> alter system set log_archive_start=true scope=spfile;

系統已更改。

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

Total System Global Area 101784276 bytes
Fixed Size 453332 bytes
Variable Size 75497472 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
資料庫裝載完畢
資料庫已經開啟。
SQL> archive log list;
資料庫日誌模式 存檔模式
自動存檔 啟用
存檔終點 d:\oraarc
最早的概要日誌序列 0
下一個存檔日誌序列 1
當前日誌序列 1

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

相關文章