程序結構
user process
database processes
儲存結構
邏輯結構與物理結構的關聯
oracleserver = instance + database
instance = memorystructures + processstructures
memorystructures = systemglobalarea
單伺服器對應本地儲存
多伺服器rac對應共享儲存
dbwn
serverprocess把物理檔案中的資料讀到databasebuffercache中,dbwn負責把databasebuffercache中的髒資料寫到物理檔案中。
ckpt
lgwr
smon
負責例項恢復
pmon
reco
arcn
可以多路備份歸檔日誌檔案。
asmb
rbal
others
database物理檔案
oracle體系結構
oracle由例項和資料庫組成 例項是由sga system global area 和一系列後台程序組成的,其中sga最主要劃分為共享池 shared pool 資料緩衝區 db cache 和日誌緩衝區 log buffer 後台程序包括pmon smon lckn reco ckpt dbwr...
oracle體系結構
一.oracle資料庫的後台程序 dbwr 資料庫寫程序,負責將更改的資料從資料庫緩衝區寫入資料檔案 smon 系統監控,檢查資料庫的狀態,恢復資料庫的例項 pmon 程序監控,負責oracle程序失敗時資源清理釋放 chpt 檢查點程序,每當緩衝區資料寫入檔案時,更新控制檔案的資料庫狀態資訊 ar...
oracle體系結構
oracle體系結構圖 1.1 為什麼oracle資料庫管理系統要引進非常複雜的體系結構 更高效的使用記憶體,保證資料庫不丟失任何資料 1.2 常用術語 1.2.1 程序 一段記憶體正在執行的程式 1.2.2 後台程序 可以有多個後台程序 1.2.3 緩衝區 臨時儲存資料的記憶體區 1.3 orac...