ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

阅读更多

use query below to check active session

SELECT
    O.OBJECT_NAME,
    S.SID,
    S.SERIAL#,
    P.SPID,
    S.PROGRAM,
    SQ.SQL_FULLTEXT,
    S.LOGON_TIME
FROM
    V$LOCKED_OBJECT L,
    DBA_OBJECTS O,
    V$SESSION S,
    V$PROCESS P,
    V$SQL SQ
WHERE
    L.OBJECT_ID = O.OBJECT_ID
    AND L.SESSION_ID = S.SID
    AND S.PADDR = P.ADDR
    AND S.SQL_ADDRESS = SQ.ADDRESS;

 

Reference http://abeytom.blogspot.com/2012/08/finding-and-fixing-ora-00054-resource.html

 

你可能感兴趣的:(ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired)