ORACLE 設定資料庫歸檔模式

2021-08-01 07:21:27 字數 2323 閱讀 5795

檢視資料庫狀態,資料庫為歸檔模式

sys@riven hey~j->archive log list;

database log mode                    archive mode

automatic archival                      enabled

archive destination                     use_db_recovery_file_dest

oldest online log sequence          1

next log sequence to archive       1

current log sequence                  1

注    歸檔路徑為引數use_db_recovery_file_dest指定的路徑,也就是快速恢復區路徑

修改資料庫為非歸檔模式(開啟、關閉歸檔模式都需要在mount模式下進行)

sys@riven hey~j->shutdown immediate

database closed.

database dismounted.

oracle instance shut down.

sys@riven hey~j->startup mount;

oracle instance started.

total system global area    830930944 bytes

fixed size                         2257800 bytes

variable size                      541068408 bytes

database buffers               281018368 bytes

redo buffers                     6586368 bytes

database mounted.

sys@riven hey~j->alter database noarchivelog;

database altered.

sys@riven hey~j->archive log list;

database log mode               no archive mode

automatic archival                 disabled

archive destination                use_db_recovery_file_dest

oldest online log sequence     1

current log sequence             1

sys@riven hey~j->select status from v$instance;

status

------------

mounted

sys@riven hey~j->alter database archivelog;

database altered.

sys@riven hey~j->archive log list;

database log mode                archive mode

automatic archival                  enabled

archive destination                 use_db_recovery_file_dest

oldest online log sequence      1

next log sequence to archive   1

current log sequence              1

sys@riven hey~j->alter database open;

database altered.

資料庫啟動歸檔以後,特別要注意的是,歸檔檔案所放的目錄是否還有剩餘空間,如果空間不足了,那麼就會導致資料庫hang的現象,因為當redo日誌切換以後,日誌將歸檔,日誌是迴圈使用的,如果迴圈到未歸檔的redo檔案以後,那麼資料庫就會出現hang的情況,等待日誌的歸檔。所以,剩餘空間和過期的歸檔日誌都是必須要維護的。

資料庫歸檔模式設定

1。關閉資料庫 sql shutdown immediate 2。啟動資料庫到mount狀態 sql startup mount 3。啟用歸檔模式 sql alter database archivelog 4。檢視修改後的資料庫備份和恢復策略及歸檔檔案的位置 sql archive log lis...

Oracle資料庫歸檔模式

1 登入 sqlplus,方法 sqlplus nolog,2 登入管理員 方法 conn as sysdba 3 開啟歸檔日誌 3.1 shutdown immediate 關閉資料庫 3.2 startup mount 開啟資料庫 3.3 alter database archivelog 開啟...

更改oracle資料庫歸檔模式

更改資料庫的歸檔模式需要重新啟動資料庫,在mount模式下修改,以下是乙個簡要的步驟說明 n 修改必要的初始化引數 n 以immediate方式關閉資料庫 n 啟動例項到mount狀態 n 更改執行模式並開啟資料庫 以下簡單介紹如何啟用和關閉資料庫德歸檔模式 n log archive start ...