這篇文章為大家帶來了關於oracle資料庫的開啟和關閉的相關知識,希望對大家有幫助。
關於資料庫的各種啟動和關閉指令一直感覺有些混亂,現整理一下。
一、資料庫的啟動 :
#Oracle 的啟動分為三個步驟:分別是啟動實例、載入資料庫 、開啟資料庫。可以依照自己的實際需求來開啟資料庫
語法是startup
1、nomount 模式
SQL> startup nomount ORACLE instance started. Total System Global Area 830930944 bytes Fixed Size 2257800 bytes Variable Size 536874104 bytes Database Buffers 285212672 bytes Redo Buffers 6586368 bytes
這種啟動方式只會建立實例(即建立Oracle實例的各種記憶體結構和服務進程),並不載入資料庫也不會開啟資料檔。
這種模式一般適用於在建立資料庫和控制檔。
2、mount 模式
SQL> startup mount ORACLE instance started. Total System Global Area 830930944 bytes Fixed Size 2257800 bytes Variable Size 536874104 bytes Database Buffers 285212672 bytes Redo Buffers 6586368 bytes Database mounted.
這個模式會啟動實例,載入資料庫並保存資料庫的關閉模式
一般用於資料庫維護時,例如:執行資料庫完全復原操作,更改資料庫的歸檔模式等
3、open 模式
SQL> startup ORACLE instance started. Total System Global Area 830930944 bytes Fixed Size 2257800 bytes Variable Size 536874104 bytes Database Buffers 285212672 bytes Redo Buffers 6586368 bytes Database mounted. Database opened.
這種模式就是將啟動實例,載入並開啟資料庫。 這是常規的開啟資料庫的方式,只要使用者想要對資料庫進行多種操作,就必須採取這種方式打開,(用open模式開啟資料庫)startup後面不需要加參數的。
4、force 模式
SQL> startup force ORACLE instance started. Total System Global Area 830930944 bytes Fixed Size 2257800 bytes Variable Size 536874104 bytes Database Buffers 285212672 bytes Redo Buffers 6586368 bytes Database mounted. Database opened.
這種模式將終止實例並重新啟動資料庫(open),這種模式具有一定的強制性(例如在其他啟動模式失效的時候可以嘗試此模式)
二 、資料庫的關閉:
#關閉也分為三步,包括:關閉資料庫、卸載資料庫、關閉Oracle實例
語法是shutdown
1、normal
SQL> shutdown normal Database closed. Database dismounted. ORACLE instance shut down.
這種屬於正常關閉模式(前提沒有時間限制、通常會選擇這種方式來關閉資料庫)
2、immediate
SQL> shutdown immediate Database closed. Database dismounted. ORACLE instance shut down.
這種方式成為立即關閉資料庫,盡可能在最短的時間內關閉資料庫。
在這種關閉方式下,Oracle不但會立即中斷當前用戶的連接,而且會強行終止用戶的當前活動事物,將未完成的事物回退,以立即關閉方式關閉資料庫。
3、transactional
SQL> shutdown transactional Database closed. Database dismounted. ORACLE instance shut down.
這種方式稱為作為事物關閉方式,它的首要任務是要能保證當前所有的活動事物都可以被提交並在最短的時間內關閉資料庫。
4、abort
SQL> shutdown abort ORACLE instance shut down. 慎重!慎重!慎重!(重要的事情说三遍)
這種方式被稱為終極關閉方式,終極關閉方式具有一定的強制性和破壞性,使用這種方式會強制中斷任何資料庫操作,這樣可能會遺失一部分資料訊息,影響資料庫的完整性。
(如果其他三種方法無法關閉時再使用此方法。 謹慎使用!)
#建議教學:《Oracle教學》
以上是十分鐘搞懂oracle資料庫的開啟與關閉的詳細內容。更多資訊請關注PHP中文網其他相關文章!