[轉]alter system switch logfile和alter system archive log current的區別

oo0yuki0oo發表於2011-07-19

1、

alter system switch logfile 是強制日誌切換,不一定就歸檔當前的重做日誌檔案

(若自動歸檔開啟,就歸檔前的重做日誌,若自動歸檔沒有開啟,就不歸檔當前重做日誌。)
alter system archive log current 是歸檔當前的重做日誌檔案,不管自動歸檔有沒有打都歸檔。
主要的區別在於:
ALTER SYSTEM SWITCH LOGFILE對單例項資料庫或RAC中的當前例項執行日誌切換;
而ALTER SYSTEM ARCHIVE LOG CURRENT會對資料庫中的所有例項執行日誌切換。

為什麼執行熱備後要執行alter system archive log current 這個語句,看到很多指令碼都是這樣寫的。
是不是必須的?

一般的RMAN指令碼都是這樣寫的,因為RMAN是可以備份歸檔日誌的。

alter system archive log current 這樣後就可以將所有的歸檔都備份出來了。這樣做是為了保證資料的完整和一致。

ALTER SYSTEM SWITCH LOGFILE ;

SWITCH LOGFILE Clause

TheSWITCHLOGFILEclause lets you explicitly force Oracle to begin writing to a new redo log file group, regardless of whether the files in the current redo log file group are full. When you force a log switch, Oracle begins to perform. a checkpoint but returns control to you immediately rather than when the checkpoint is complete. To use this clause, your instance must have the database open.

ALTER SYSTEM ARCHIVE LOG CURRENT ;
CURRENT Clause

SpecifyCURRENTto manually archive the current redo log file group of the specified thread, forcing a log switch. If you omit theTHREADparameter, then Oracle archives all redo log file groups from all enabled threads, including logs previous to current logs. You can specifyCURRENTonly when the database is open.

ALTER SYSTEM ARCHIVE LOG CURRENT NOSWITCH;
NOSWITCH

SpecifyNOSWITCHif you want to manually archive the current redo log file group without forcing a log switch. This setting is used primarily with standby databases to prevent data divergence when the primary database shuts down. Divergence implies the possibility of data loss in case of primary database failure.

You can use theNOSWITCHclause only when your instance has the database mounted but not open. If the database is open, then this operation closes the database automatically. You must then manually shut down the database before you can reopen it

[@more@]

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

相關文章