11G的SYS連線阻止SHUTDOWN IMMEDIATE關閉資料庫
以前就發現11g的Oracle有這個問題,一直沒有太在意,直到今天關閉資料庫的時候發現很長時間Oracle都無法正常關閉。
從後臺查詢,發現資料庫出現錯誤提示:
SHUTDOWN: Active processes prevent shutdown operation
檢查資料庫後臺程式,未發現佔用大量資源的連線,實際上整個資料庫中只有一個本地連線:
bash-3.00$ ps -ef|grep oraclerac11g2
oracle 22273 22272 0 19:59:51 ? 0:00 oraclerac11g2 (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
oracle 29307 22520 0 20:09:28 pts/2 0:00 grep oraclerac11g2
經過檢查發現,似乎是由於當前的SYS連線沒有退出,而直接透過HOST命令啟動了另一個sqlplus命令,並在其中執行了shutdown immediate操作,這時就會導致shutdown immediate被hang住:
$ sqlplus "/ as sysdba"
SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 8月 22 19:49:35 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
連線到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
SQL> shutdown immediate
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> startup
ORACLE 例程已經啟動。
Total System Global Area 1.7108E+10 bytes
Fixed Size 2101632 bytes
Variable Size 3344420480 bytes
Database Buffers 1.3757E+10 bytes
Redo Buffers 4431872 bytes
資料庫裝載完畢。
資料庫已經開啟。
下面啟動另一個會話,並以SYS登陸資料庫,然後嘗試關閉資料庫:
SQL> shutdown immediate
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
發現資料庫可以正常關閉,然後根據剛才的描述,在sqlplus中切換到主機命令列,然後再新啟動一個sqlplus,執行shutdown immediate:
SQL> startup
ORACLE 例程已經啟動。
Total System Global Area 1.7108E+10 bytes
Fixed Size 2101632 bytes
Variable Size 3344420480 bytes
Database Buffers 1.3757E+10 bytes
Redo Buffers 4431872 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> select count(*) from v$session;
COUNT(*)
----------
36
SQL> host
$ sqlplus "/ as sysdba"
SQL*Plus: Release 11.1.0.6.0 - Production on 星期五 8月 22 19:59:51 2008
Copyright (c) 1982, 2007, Oracle. All rights reserved.
連線到:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
SQL> shutdown immediate
和預期的一樣,關閉命令被hang住了,檢查alert檔案就可以看到上面的提示資訊。
退出當前的會話,回到原始會話,並重新連線,就可以正常的關閉資料庫了:
SQL> shutdown immediate
^CORA-01013: 使用者請求取消當前的操作
SQL> exit
從 Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options 斷開
$ exit
SQL> shutdown immediate
ORA-03135: 連線失去聯絡
SQL> conn / as sysdba
已連線。
SQL> shutdown immediate
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
而920版本的資料庫是沒有這個問題的:
[oracle@bjtest ~]$ sqlplus "/ as sysdba"
SQL*Plus: Release 9.2.0.4.0 - Production on 星期六 8月 23 04:14:36 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
已連線到空閒例程。
SQL> host
[oracle@bjtest ~]$ ps -ef|grep ora
root 3804 3792 0 Jul18 ? 00:00:29 hald-addon-storage: polling /dev/hda
root 26417 26385 0 04:14 pts/1 00:00:00 su - oracle
oracle 26418 26417 0 04:14 pts/1 00:00:00 -bash
oracle 26451 26418 0 04:14 pts/1 00:00:00 sqlplus
oracle 26452 26451 0 04:14 ? 00:00:00 oraclebjtest (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
oracle 26453 26451 0 04:14 pts/1 00:00:00 /bin/bash
oracle 26481 26453 0 04:14 pts/1 00:00:00 ps -ef
oracle 26482 26453 0 04:14 pts/1 00:00:00 grep ora
[oracle@bjtest ~]$ exit
exit
SQL> startup
ORACLE 例程已經啟動。
Total System Global Area 9415145752 bytes
Fixed Size 755992 bytes
Variable Size 822083584 bytes
Database Buffers 8589934592 bytes
Redo Buffers 2371584 bytes
資料庫裝載完畢。
資料庫已經開啟。
SQL> host
[oracle@bjtest ~]$ sqlplus "/ as sysdba"
SQL*Plus: Release 9.2.0.4.0 - Production on 星期六 8月 23 04:15:08 2008
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
連線到:
Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production
SQL> shutdown immediate
資料庫已經關閉。
已經解除安裝資料庫。
ORACLE 例程已經關閉。
SQL> exit
從Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production中斷開
[oracle@bjtest ~]$ exit
exit
SQL> exit
ERROR:
ORA-03113: 通訊通道的檔案結束
從Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.4.0 - Production(情況複雜)中斷開
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4227/viewspace-433226/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- shutdown immediate 持久無法關閉資料庫之解決方案資料庫
- oracle 正常關閉shutdown immediate與開啟open資料庫alertOracle資料庫
- 資料庫無法shutdown immediate的案例資料庫
- zt_Resolving Shutdown Immediate Hang Situations_shutdown immediate關庫慢
- 關閉資料庫遇到SHUTDOWN: Active processes prevent shutdown operation資料庫
- shutdown immediate物理備庫長時間無法關閉案列
- 資料庫連線未關閉的問題資料庫
- 【Shutdown】同一會話存在未提交事務時使用immediate選項無法關閉資料庫會話資料庫
- 【YashanDB知識庫】資料庫審計shutdown immediate操作導致資料庫異常退出資料庫
- 資料庫shutdown immediate,control.ctl 檔案不能刪除資料庫
- 因歸檔日誌無法歸檔造成的 oracle shutdown immediate無法關閉Oracle
- 關於資料庫連線池資料庫
- 請關掉你的資料庫連線!並且請使用資料庫連線池資料庫
- Oracle 11g連線遠端資料庫Oracle資料庫
- 關閉資料庫時SHUTDOWN: waiting for active calls to complete.處理資料庫AI
- 資料庫關閉資料庫
- 關於java連線SQL資料庫JavaSQL資料庫
- 資料庫的連線資料庫
- 用Navicat連線資料庫-資料庫連線(MySQL演示)資料庫MySql
- 關於JPetstore連線資料庫問題資料庫
- 連線資料庫資料庫
- 資料庫連線資料庫
- 請教關於資料庫連線的問題資料庫
- 請問,關於資料庫連線的問題。資料庫
- 各種連線資料庫的連線字串資料庫字串
- 【SYS_CONTEXT】使用SYS_CONTEXT獲取連線到資料庫伺服器的IP地址Context資料庫伺服器
- 資料庫的連線數資料庫
- 連線資料庫的疑惑資料庫
- 資料庫的連線串資料庫
- 資料庫外連線,自然連線,內連線,條件連線,等值連線關係及詳解資料庫
- 3.3.1 關於關閉資料庫資料庫
- 關於資料庫連線的一些小問題資料庫
- 關於tomcat資料庫連線池的問題Tomcat資料庫
- 關於如何節約資料庫連線的討論?資料庫
- 安全關閉Oracle資料庫Oracle資料庫
- Oracle 11g RAC通過SCAN IP連線資料庫 - JDBC連線串問題Oracle資料庫JDBC
- JDBC連線資料庫JDBC資料庫
- java連線資料庫Java資料庫