04 Oracle 11g 資料庫關閉與啟動

2021-07-28 07:59:18 字數 2575 閱讀 1598

關閉資料庫:shutdown [ normal | immediate | transactional | abort ]

normal:不再接受新連線,等待已有連線斷開後關閉資料庫。

immediate:立即斷開所有連線,未完成的事務回滾。關閉資料庫。

transactional:等待進行中的事務完成後斷開連線。關閉資料庫。

abort:無法正常關閉資料庫時使用,立即斷開連線,關閉資料庫。但啟動資料庫時需要做資料恢復。

注:一般使用 immediate 關閉資料庫。能保持資料完整並且關閉速度快。

sql*plus: release 11.2.0.1.0 production on 星期六 3月 11 21:18:49 2017

all rights reserved.

請輸入使用者名稱: sys as sysdba

輸入口令:

連線到:

oracle database 11g enterprise edition release 11.2

.0.1.0-

64bit production

sql> shutdown immediate

資料庫已經關閉。

已經解除安裝資料庫。

oracle 例程已經關閉。

sql> startup nomount

oracle 例程已經啟動。

total system global area 1670221824

bytes

fixed size 2176328

bytes

variable size 973081272

bytes

database buffers 687865856

bytes

redo buffers 7098368

bytes

sql> alter database mount;

資料庫已更改。

sql> alter database open;

sql*plus: release 11.2.0.1.0 production on 星期六 3月 11 21:23:46 2017

all rights reserved.

請輸入使用者名稱: sys as sysdba

輸入口令:

連線到:

oracle database 11g enterprise edition release 11.2

.0.1.0-

64bit production

sql> shutdown immediate

資料庫已經關閉。

已經解除安裝資料庫。

oracle 例程已經關閉。

sql> startup mount

oracle 例程已經啟動。

total system global area 1670221824

bytes

fixed size 2176328

bytes

variable size 973081272

bytes

database buffers 687865856

bytes

redo buffers 7098368

bytes

資料庫裝載完畢。

sql> alter database open;

資料庫已更改。

sql>

sql*plus: release 11.2.0.1.0 production on 星期六 3月 11 21:26:28 2017

all rights reserved.

請輸入使用者名稱: sys as sysdba

輸入口令:

連線到:

oracle database 11g enterprise edition release 11.2

.0.1.0-

64bit production

sql> shutdown immediate

資料庫已經關閉。

已經解除安裝資料庫。

oracle 例程已經關閉。

sql> startup open

oracle 例程已經啟動。

total system global area 1670221824

bytes

fixed size 2176328

bytes

variable size 973081272

bytes

database buffers 687865856

bytes

redo buffers 7098368

bytes

資料庫裝載完畢。

資料庫已經開啟。

sql>

還原資料庫 oracle 11g

1.需要檔案 2.需要知道表空間 nnc data01 和臨時表空間 nnc index01 和資料庫使用者 nc63train 3.開始,第一步,建立兩個表空間 開啟sql plus,連線資料庫,執行語句 4.第二步,建立資料庫使用者 createuser nc63train identified...

解除安裝Oracle 11g資料庫

完全解除安裝oracle11g步驟 1 開始 設定 控制面板 管理工具 服務 停止所有 oracle 服務。2 開始 程式 oracle orahome81 oracle installation products universal installer,單擊 解除安裝產品 全部展開 選中除 ora...

Oracle11 g資料庫過期

公司使用的oracle11 g 32位 資料庫出現有效期過期問題,解決此問題可以使用下面的方法 1 查詢密碼有效期system登入 sql select from dba profiles where profile default and resource name password life t...