How to find/kill the locked objects in an oracle database

The below query can be used for determining the if any object locked in an oracle database.

select   c.owner,  c.object_name,  c.object_type,  b.sid,  b.serial#,
   b.status, b.osuser, b.machine
from
   v$locked_object a , v$session b, dba_objects c
where
   b.sid = a.session_id
and a.object_id = c.object_id;

And if you need to kill any session you can use the below query to do the same.

alter system kill session sid,serial;


Comments

  1. […] How to find/kill the locked objects in an oracle database […]

  2. nilesh mehta Avatar
    nilesh mehta

    select c.owner, c.object_name, c.object_type, b.sid, b.serial#,
    b.status, b.osuser, b.machine
    from
    v$locked_object a , v$session b, dba_objects c

    these queries must be optimized as they may give performance issues.

  3. Hi,

    Thanks

Leave a Reply to nilesh mehta Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.