ORA-01089: immediate shutdown in progress - no operations are permitted
今天shutdown immediate關資料庫的時候出現ORA-01089: immediate shutdown in progress - no operations are permitted的錯誤。
ps -ef|grep ora_發現oracle的各個後臺程式仍然在執行著,說明資料庫沒有關閉成功。
解決方法如下:
先exit退出,重新登入:
[oracle@localhost trace]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 18 08:21:53 2014
Copyright (c) 1982, 2009, Oracle. All rights reserved.
@ 18-SEP-14>conn /as sysdba
Connected to an idle instance.
接著,使用shutdown abort強制關閉資料庫:
SYS@orcl 18-SEP-14>shutdown abort;
ORACLE instance shut down.
最後,使用startup force開啟資料庫:
SYS@orcl 18-SEP-14>startup force;
ORACLE instance started.
Total System Global Area 849530880 bytes
Fixed Size 1339824 bytes
Variable Size 641732176 bytes
Database Buffers 201326592 bytes
Redo Buffers 5132288 bytes
Database mounted.
Database opened.
開啟資料庫之後,再次使用shutdown immediate關閉資料庫:
SYS@orcl 18-SEP-14>shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
問題解決。
ps -ef|grep ora_發現oracle的各個後臺程式仍然在執行著,說明資料庫沒有關閉成功。
解決方法如下:
先exit退出,重新登入:
[oracle@localhost trace]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 18 08:21:53 2014
Copyright (c) 1982, 2009, Oracle. All rights reserved.
@ 18-SEP-14>conn /as sysdba
Connected to an idle instance.
接著,使用shutdown abort強制關閉資料庫:
SYS@orcl 18-SEP-14>shutdown abort;
ORACLE instance shut down.
最後,使用startup force開啟資料庫:
SYS@orcl 18-SEP-14>startup force;
ORACLE instance started.
Total System Global Area 849530880 bytes
Fixed Size 1339824 bytes
Variable Size 641732176 bytes
Database Buffers 201326592 bytes
Redo Buffers 5132288 bytes
Database mounted.
Database opened.
開啟資料庫之後,再次使用shutdown immediate關閉資料庫:
SYS@orcl 18-SEP-14>shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
問題解決。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29800581/viewspace-1273615/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- OGG OCI Error ORA-01089: immediate shutdown in progressError
- Server shutdown in progressServer
- zt_Resolving Shutdown Immediate Hang Situations_shutdown immediate關庫慢
- mysqld: Sort aborted: Server shutdown in progressMySqlServer
- shutdown immediate alert出現SHUTDOWN: waiting for active calls to complete.AI
- shutdown immediate 太慢,需要進行程式查殺行程
- 資料庫無法shutdown immediate的案例資料庫
- Shutdown immediate命令長時間等待分析一例
- ORA-01033: ORACLE initialization or shutdown in progress錯誤Oracle
- DML_LOCKS設定為0導致SHUTDOWN IMMEDIATE失敗
- ora-01033:oracle initialization or shutdown in progress 解決方法Oracle
- shutdown immediate 持久無法關閉資料庫之解決方案資料庫
- shutdown immediate物理備庫長時間無法關閉案列
- oracle 正常關閉shutdown immediate與開啟open資料庫alertOracle資料庫
- Oracle OCP 1Z0 053 Q77(ASM&Shutdown Immediate)OracleASM
- DG配置錯誤:ORA-01033: ORACLE initialization or shutdown in progressOracle
- ORA-01033:ORACLE initialization or shutdown in progress錯誤解決Oracle
- 11G的SYS連線阻止SHUTDOWN IMMEDIATE關閉資料庫資料庫
- 資料庫shutdown immediate,control.ctl 檔案不能刪除資料庫
- ORA-01097錯誤解決辦法及探索shutdown immediate
- Oracle OCP IZ0-053 Q687(ASM Shutdown immediate when users connected)OracleASM
- ORA-01033: ORACLE initialization or shutdown in progress 實用的處理方法Oracle
- Error:ORA-01033:ORACLE initialization or shutdown in progress錯誤解決(轉)ErrorOracle
- 因歸檔日誌無法歸檔造成的 oracle shutdown immediate無法關閉Oracle
- Cyclic Operations
- 【YashanDB知識庫】資料庫審計shutdown immediate操作導致資料庫異常退出資料庫
- 【Shutdown】同一會話存在未提交事務時使用immediate選項無法關閉資料庫會話資料庫
- ue修改datafile資料檔案導致shutdown immediate失敗一例_ora-01208
- macOS: sudo : Operation not permittedMacMIT
- Progress語法
- Long running Operations in OracleOracle
- Operations that Require Temporary Segments (26)UI
- 報錯-only final is permittedMIT
- EXECUTE IMMEDIATE dynamic sql in procedureSQL
- audit_sys_operations引數
- Restricted Operations of the Shared Server (132)RESTServer
- HTML <progress> 進度條HTML
- [Angular] Progress HTTP Events with 'HttpRequest'AngularHTTP