oracle資料庫歸檔詳解

來源:互聯網
上載者:User

標籤:oracle

什麼是Oracle歸檔模式? Oracle資料庫有聯機重做日誌,這個日誌是記錄對資料庫所做的修改,比如插入,刪除,更新資料等,對這些操作都會記錄在聯機重做日誌裡。一般資料庫至少要有2個聯機重做日誌組。當一個聯機重做日誌組被寫滿的時候,就會發生日誌切換,這時聯機重做日誌組2成為當前使用的日誌,當聯機重做日誌組2寫滿的時候,又會發生日誌切換,去寫聯機重做日誌組1,就這樣反覆進行。

如果資料庫處於非歸檔模式,聯機日誌在切換時就會丟棄. 而在歸檔模式下,當發生日誌切換的時候,被切換的日誌會進行歸檔。比如,當前在使用聯機重做日誌1,當1寫滿的時候,發生日誌切換,開始寫聯機重做日誌2,這時聯機重做日誌1的內容會被拷貝到另外一個指定的目錄下。這個目錄叫做歸檔目錄,拷貝的檔案叫歸檔重做日誌。

一、查看是否是歸檔模式

select name,log_mode from v$database;

650) this.width=650;" title="1" alt="1" src="http://s3.51cto.com/wyfs02/M01/9D/F2/wKiom1mJMRKAEOxDAAAsFHZp4Tc364.jpg" height="107" />

LOG_MODE顯為為ARCHIVELOG為歸檔模式,顯示為NOARCHIVELOG為非歸檔模式

二、開啟歸檔模式

1、啟用歸檔模式前需要先關閉資料庫

650) this.width=650;" title="2" alt="2" src="http://s3.51cto.com/wyfs02/M01/9D/F2/wKioL1mJMRPRPVzoAAAuAlplKTc339.jpg" height="113" />

2、關閉後,啟動資料庫以方便裝載:啟動的時候以mount形式啟動

650) this.width=650;" title="3" alt="3" src="http://s3.51cto.com/wyfs02/M01/9D/F2/wKioL1mJMRTw2RijAABlZ57Noqc142.jpg" height="182" />

3、更改資料庫記錄模式為存檔模式

alter database archivelog;

4、確認已經更改

alter database open;
archive log list;

650) this.width=650;" title="4" alt="4" src="http://s3.51cto.com/wyfs02/M02/9D/F2/wKioL1mJMRWwe1w3AAB7MRQfwrA500.jpg" height="252" />

三、關閉歸檔模式

歸檔模式改為非歸檔模式: 超級管理員身份登入 sys 執行:

shutdown immediate;
startup mount;
alter system archive log stop;
alter database noarchivelog;

// 禁止存檔聯機重做日誌:轉換資料庫的存檔模式。

alter database open;

// 開啟資料庫

archive log list;

// 查看已串連執行個體的存檔資訊;

本文出自 “59090939” 部落格,請務必保留此出處http://59090939.blog.51cto.com/6338052/1954411

oracle資料庫歸檔詳解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.