How to find who has allocated a user lock via dbms_lock

lockingoracle-10g

We have a print queue process that acquires a user lock via dbms_lock.allocate_unique. It performs the work and then releases the lock. The process works very well.

Today, we have a process that allocated a lock, as seen in this output from dbms_lock_allocated:

NAME            LOCKID      EXPIRATION
printer_lock    1073741825  11/30/2013 9:35:46 AM

Whatever session has this hasn't released the lock. Is there any way we can find the session that allocated this lock, so we can end their session and release the lock?

EDIT:

Querying DBA_LOCKS does not show any sessions with the lock type of 'PL/SQL User Lock'.

Thanks!

Best Answer

The type of locks you are referring to are stored in table (not view) SYS.DBMS_LOCK_ALLOCATED. I believe they only have a "handle", but not a specific owner, i.e.: they all belong to SYS. That said, if you have active blocking situation going on (someone is waiting for the lock and it's not getting released by the session who allocated the lock) then this query might show what's going on:

SELECT blocker.username blocker, blocker.sid blocker_session
     , blocked.username blocked, blocked.sid blocked_session
  FROM v$session blocked
  JOIN v$session blocker
  ON (blocked.blocking_session = blocker.sid)
 WHERE blocked.wait_class = 'Application'
   AND blocked.event='enq: UL - contention';