ORA-09968 : unable to lock file

AleynaGulec
1 min readNov 25, 2022

--

Merhaba, veritabanını açarken ORA-09968 hatasını alıyorsanız aşağıdaki adımları takip etmeniz yeterli olacaktır.

HATA:

SYS> startup nomount
ORA-10997: another startup/shutdown operation of this instance inprogress
ORA-09968: unable to lock file
Linux-x86_64 Error: 11: Resource temporarily unavailable
Additional information: 1751

ÇÖZÜM:

[root@test ~]# ipcs
- - - Message Queues - - - -
key msqid owner perms used-bytes messages
- - - Shared Memory Segments - - - -
key shmid owner perms bytes nattch status
0x00000000 65536 oracle 600 4194304 2 dest
0x00000000 163841 oracle 600 4194304 2 dest
0x00000000 294915 oracle 600 2097152 2 dest
0x00000000 5636102 oracle 600 4194304 2 dest
0x00000000 5734407 oracle 600 393216 2 dest
- - - Semaphore Arrays - - - -
key semid owner perms nsems

[oracle@test dbs]$ ps -ef|grep pmon
oracle 2809 2083 0 02:56 pts/10 00:00:00 grep - color=auto pmon

[oracle@test dbs]$ fuser *
/home/oracle/app/oracle/product/11.2.0/dbhome_1/dbs/lkinstorcl: 2150

[oracle@test dbs]$ ps -ef|grep 2150
oracle 1751 1 99 02:25 ? 00:24:06 oracleorcl (DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
oracle 2643 2083 0 02:50 pts/10 00:00:00 grep - color=auto 2150

[oracle@test dbs]$ kill -9 2150

[oracle@test dbs]$ fuser *

Umarım sizler için faydalı bir doküman olmuştur. Eğer merak ettikleriniz olursa bana LinkedIn hesabımdan ulaşabilirsiniz. Bir sonraki yazılarımda görüşmek dileğiyle :)

--

--