Object Browser是什么东西?
LZ说的锁是数据库的?

解决方案 »

  1.   

    一般:
    select   p.spid,a.serial#, c.object_name,b.session_id,b.oracle_username,b.os_user_name,a.sid sid   from   v$process   p,v$session   a,   v$locked_object   b,all_objects   c   where   p.addr=a.paddr   and   a.process=b.process   and   c.object_id=b.object_id ; 
    查看锁:alter   system     kill   session   'sid,serial' immediate;