• Skip to main content
  • Skip to primary sidebar

Ravi Shankar

Lifelong Learner

  • About
  • Portfolio

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

By Ravi Shankar Leave a Comment

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;

Filed Under: Technical

Reader Interactions

Comments

  1. nilesh mehta says

    July 12, 2010 at 1:07 pm

    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.

    Reply
  2. Devanathan says

    November 10, 2010 at 12:12 pm

    Hi,

    Thanks

    Reply

Trackbacks

  1. Key posts in Techno Masala for March 2008 | Techno Masala says:
    April 3, 2008 at 1:32 am

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

    Reply

Leave a Reply 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.

Primary Sidebar

  • Email
  • LinkedIn
  • Twitter

iOS Cheat Sheets

Download free copy of iOS Cheat Sheets

Copyright 2023 © rshankar.com

Terms and Conditions - Privacy Policy