1.現象
由於之前啟動過一次報錯,首先關閉資料庫,然後重啟
$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.2.0 Production on 星期二 5月 26 15:36:50 2015
Copyright (c) 1982, 2010, Oracle. All rights reserved.
連線到:
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> shutdown immediate
ORA-01507: database not mounted
ORACLE 例程已經關閉。
SQL>
SQL> startup
ORACLE 例程已經啟動。
Total System Global Area 5.3447E+10 bytes
Fixed Size 2232248 bytes
Variable Size 3.2481E+10 bytes
Database Buffers 2.0938E+10 bytes
Redo Buffers 26517504 bytes
ORA-01102: cannot mount database in EXCLUSIVE mode
SQL> exit
從 Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 斷開
SQL*Plus: Release 11.2.0.2.0 Production on 星期二 5月 26 15:43:32 2015
2.分析原因
到$ORACLE_HOME/dbs下找到lk開標頭檔案,這個錯誤主要是lk<SID>檔案造成的
它的主要作用是說明DATABASE MOUNT上了,不用在MOUNT了;DATABASE UNMOUNT 後會自動刪除,但異常情況時檔案存在的話,即使資料庫已經停掉,系統也會認為資料庫已經mount了
$ cd $ORACLE_HOME/dbs
$ ls -l
total 96
-rw-rw---- 1 oracle oinstall 1544 Nov 17 2014 hc_DBUA0.dat
-rw-rw---- 1 oracle oinstall 1544 Nov 17 2014 hc_itdb1.dat
-rw-rw---- 1 oracle oinstall 1544 May 26 15:43 hc_itsys.dat
-rw-rw---- 1 oracle oinstall 1544 May 26 15:43 hc_itsys1.dat
-rw-rw---- 1 oracle oinstall 1544 May 13 16:16 hc_orcl.dat
-rw-r--r-- 1 oracle oinstall 2851 May 15 2009 init.ora
-rw-r----- 1 oracle oinstall 24 Nov 17 2014 lkITSYS1
-rw-r----- 1 oracle oinstall 24 Aug 04 2014 lkORCL
-rw-r----- 1 oracle oinstall 1536 Nov 17 2014 orapwitsys1
-rw-r----- 1 oracle oinstall 1536 Aug 04 2014 orapworcl
-rw-r----- 1 oracle oinstall 2560 May 05 10:15 spfileitsys1.ora
-rw-r----- 1 oracle oinstall 2560 Feb 10 22:00 spfileorcl.ora
3.解決方法
用fuser命令kill掉佔用lkITSYS1檔案的程式
$ fuser -k lkITSYS1
lkITSYS1: 5701814 5767372 5832954 6946854 7209198 7667712 7930062 8323164 8388624 8847426 9306156 9633968 9699564 9895986 16187422
$ fuser -u lkITSYS1
lkITSYS1:
$
SQL*Plus: Release 11.2.0.2.0 Production on 星期二 5月 26 15:46:35 2015
已連線到空閒例程。
資料庫裝載完畢。
資料庫已經開啟。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26964624/viewspace-2564338/,如需轉載,請註明出處,否則將追究法律責任。