ORA-00054: resource busy and acquire with NOWAIT specified

Oracle tablonuz lock olmuş demektir. Açmış olduğunuz bir sürü session ve process tablonuz read-only yaptı. Kurtulmak için bu processleri kill etmeniz gerekiyor. 

Aşağıdaki sorguyu çalıştırın;

select a.sid, a.serial#
from v$session a, v$locked_object b, dba_objects c 
where b.object_id = c.object_id 
and a.sid = b.session_id
and OBJECT_NAME='tabloismi';

sorgu sonucundan dönen sid ve serial ikilerinin kullanıp kill edin. Hepimize geçmiş olsun :)

alter system kill session 'sid,serial#'; 

Yorumlar

Bu blogdaki popüler yayınlar

IONIC BAŞLANGIÇ

Cannot resolve the collation conflict between “Turkish_CI_AS” and “SQL_Latin1_General_CP1_CI_AS” in the equal to operation

Golang working with interfaces and functions -3