忙里偷闲

很多事情很多心情写了也就记下了; 不写,以后可能就忘了.
个人资料
正文

Check and release lock on tables

(2010-10-06 08:39:43) 下一个
Good queries to keep here.

To check the existing locked create dby a user:
select a.object_name, b.oracle_username, b.os_user_name,c.sid, c.serial#,c.terminal, d.sql_text
from sys.dba_objects a,
v$locked_object b,
v$session c,
v$sqltext d
where a.object_id = b.object_id
and c.sid = b.session_id
and c.sql_hash_value = d.hash_value;

To remove the lock by killing a session:
alter system kill session 'c.sid, c.serial#'';


[ 打印 ]
阅读 ()评论 (0)
评论
目前还没有任何评论
登录后才可评论.