如何設定資料庫為歸檔模式
在資料庫安裝完成後,預設為非歸檔模式,透過以下步驟將非歸檔模式轉為歸檔模式
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
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- OARCLE資料庫歸檔模式的設定資料庫模式
- Oracle資料庫設定為歸檔模式的操作方法Oracle資料庫模式
- 11g資料庫設定歸檔模式資料庫模式
- 更改資料庫為歸檔模式資料庫模式
- 將資料庫修改為歸檔模式資料庫模式
- oracle 修改資料庫為歸檔模式Oracle資料庫模式
- 檢視oracle資料庫是否為歸檔模式Oracle資料庫模式
- 設定歸檔模式模式
- Oracle歸檔模式與非歸檔模式設定Oracle模式
- 將資料庫轉換為歸檔日誌模式資料庫模式
- oracle資料庫rman歸檔設定和管理Oracle資料庫
- ORACLE資料庫歸檔改為非歸檔Oracle資料庫
- 歸檔模式的設定模式
- 資料庫啟動歸檔模式資料庫模式
- 開啟資料庫歸檔模式資料庫模式
- 修改資料庫的歸檔模式資料庫模式
- Oracle 11g資料庫改為非歸檔模式Oracle資料庫模式
- 【ARCHIVE】單機環境修改資料庫為歸檔模式Hive資料庫模式
- oracle 11gR2 改資料庫為歸檔模式Oracle資料庫模式
- 非歸檔模式恢復資料庫模式資料庫
- Oracle資料庫切換歸檔模式Oracle資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式Oracle資料庫模式
- 【ARCHIVE】單機環境修改資料庫為非歸檔模式Hive資料庫模式
- 將RAC資料庫更改為不歸檔日誌的模式資料庫模式
- 設定Oracle9i為自動歸檔模式Oracle模式
- LightBD/PostgreSQL資料庫設定歸檔保留時間SQL資料庫
- 非歸檔模式改為歸檔模式模式
- 修改叢集資料庫的歸檔模式資料庫模式
- 檢視oracle資料庫是否歸檔和修改歸檔模式(轉)Oracle資料庫模式
- DB2 設定歸檔模式DB2模式
- Oracle資料庫歸檔模式的切換ELOracle資料庫模式
- 修改資料庫歸檔模式(ARCHIVELOG/NOARCHIVELOG)資料庫模式Hive
- 將Oracle資料庫改為歸檔模式並啟用Rman備份Oracle資料庫模式
- 備份前先設定成歸檔模式模式
- sqlplus下設定歸檔模式SQL模式
- 【轉】雙節點RAC下將資料庫從非歸檔模式更改到歸檔模式資料庫模式
- ORACLE 12C 開啟資料庫歸檔模式Oracle資料庫模式
- 非歸檔模式下恢復資料庫兩例模式資料庫