1. 程式人生 > >Oracle學習筆記—歸檔模式

Oracle學習筆記—歸檔模式

enable 11.2 bit dmi copyright 災難 筆記 關閉數據庫 tle

什麽是歸檔模式

Oracle數據庫有聯機重做日誌,這個日誌是記錄對數據庫所做的修改,比如插入,刪除,更新數據等,對這些操作都會記錄在聯機重做日誌裏。一般數據庫至少要有2個聯機重做日誌組。當一個聯機重做日誌組被寫滿的時候,就會發生日誌切換,這時聯機重做日誌組2成為當前使用的日誌,當聯機重做日誌組2寫滿的時候,又會發生日誌切換,去寫聯機重做日誌組1,就這樣反復進行。
如果數據庫處於非歸檔模式,聯機日誌在切換時就會丟棄。而在歸檔模式下,當發生日誌切換的時候,被切換的日誌會進行歸檔。比如,當前在使用聯機重做日誌1,當1寫滿的時候,發生日誌切換,開始寫聯機重做日誌2,這時聯機重做日誌1的內容會被拷貝到另外一個指定的目錄下。這個目錄叫做歸檔目錄,拷貝的文件叫歸檔重做日誌。
數據庫使用歸檔方式運行時才可以進行災難性恢復。

註意:歸檔模式可以提高Oracle數據庫的可恢復性,生產數據庫都應該運行在此模式下,歸檔模式應該和相應的備份策略相結合,只有歸檔模式沒有相應的備份策略只會帶來麻煩。

歸檔模式的開啟與關閉

1.管理員身份連接數據庫

C:\Users\Administrator>sqlplus [email protected] as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Tue Jun 17 23:50:55 2014

Copyright (c) 1982, 2010, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

2.查看當前歸檔模式,是歸檔還是非歸檔

SQL> archive log list;
Database log mode              No Archive Mode
Automatic archival             Disabled
Archive destination            USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence     228
Current log sequence           230

3.關閉數據庫

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.

4.啟動數據庫到mount狀態

SQL> startup mount;
ORACLE instance started.

Total System Global Area 3423965184 bytes
Fixed Size                  2180544 bytes
Variable Size            2013268544 bytes
Database Buffers         1392508928 bytes
Redo Buffers               16007168 bytes
Database mounted.

5.啟動歸檔模式

SQL> alter database archivelog;

Database altered.

SQL> archive log list;
Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence     228
Next log sequence to archive   230
Current log sequence           230

6.啟動數據庫

SQL> alter database open;
Database altered.

7.關閉歸檔模式

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount;
ORACLE instance started.

Total System Global Area 3423965184 bytes
Fixed Size                  2180544 bytes
Variable Size            2013268544 bytes
Database Buffers         1392508928 bytes
Redo Buffers               16007168 bytes
Database mounted.
SQL> alter database noarchivelog;

Database altered.

SQL> archive log list;
Database log mode              No Archive Mode
Automatic archival             Disabled
Archive destination            USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence     228
Current log sequence           230
SQL>

參考:

如何啟動或關閉oracle的歸檔(ARCHIVELOG)模式



Oracle學習筆記—歸檔模式