Oracle 幾種啟動方式 查詢啟動狀態

2021-08-02 10:02:09 字數 658 閱讀 2759

oracle資料庫幾種啟動方式

1、startup nomount;

非安裝啟動,這種方式下啟動可執行:重建控制檔案、重建資料庫,讀取init.ora檔案,啟動instance,即啟動sga和後台程序,這種啟動只需要init.ora檔案。

2、startup mount (dbname);

安裝啟動,這種方式啟動下可執行:資料庫日誌歸檔、資料庫介質恢復、使資料檔案聯機或離線、重新定位資料檔案、重做日誌檔案。

先執行「nomount」,然後開啟控制檔案,確認資料檔案和聯機日誌檔案的位置,但此時不對資料檔案和日誌檔案進行校驗檢查。

3、startup open (dbname);

先執行「nomount」,然後執行「mount」,再開啟包括redo log檔案在內的所有資料庫檔案,這種方式下可訪問資料庫中的資料。

4、startup 等於以下三個命令

startup nomount;

alter database mount;

alter database open;

檢視oracle 啟動狀態

sql> select status from v$instance; (showdown | nomount | mount | open)

mysql 幾種啟動方式 mysql的幾種啟動方式

mysql的幾種啟動方式 mysql的四種啟動方式 1 mysqld 啟動mysql伺服器 mysqld defaults file etc my.cnf user root 客戶端連線 mysql defaults file etc my.cnf ormysql s tmp mysql.sock ...

mysql 幾種啟動方式 mysql的幾種啟動方式

mysql的四種啟動方式 1 mysqld 啟動mysql伺服器 mysqld defaults file etc my.cnf user root 客戶端連線 mysql defaults file etc my.cnf ormysql s tmp mysql.sock 2 mysqld safe...

Oracle 幾種啟動和關閉方式

一 oracle資料庫幾種啟動方式 1 startup nomount 非安裝啟動,這種方式下啟動可執行 重建控制檔案 重建資料庫,讀取init.ora檔案,啟動instance,即啟動sga和後台程序,這種啟動只需要init.ora檔案。2 startup mount dbname 安裝啟動,這種...