ORA-00054: 資源正忙,要求指定 NOWAIT

jst143發表於2011-05-05

今天往一個表裡面多增加了兩個欄位,修改完畢,儲存的時候,提示如下內容:“資源正忙,要求指定nowait”。重試好幾遍,都沒有解決,於是搜尋了一下,找到了解決方法,如下:

首先執行下面一段程式碼,得到鎖定的程式:

<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gtselect 
   t1.sid, t1.serial#, t1.username, t1.logon_time 
from v$session t1 , v$locked_object t2
where t1.sid = t2.session_id 
order by t1.logon_time;

可以得到程式的SID和SERIAL#序號,然後按照下列語句解鎖:

alter system kill session 'sid,serial#';

即可,這裡我們輸入:

<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--&gtalter system kill session '3332,41117#';
即可成功解鎖,然後修改表成功。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23577591/viewspace-694479/,如需轉載,請註明出處,否則將追究法律責任。

相關文章