Guest User

Untitled

a guest
Jun 21st, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. 1、查看数据库锁,诊断锁的来源及类型:
  2.  
  3. select object_id,session_id,locked_mode from v$locked_object;
  4.  
  5. 或者用以下命令:
  6.  
  7. select b.owner,b.object_name,l.session_id,l.locked_mode from v$locked_object l, dba_objects b where b.object_id=l.object_id
  8.  
  9. 2、找出数据库的serial#,以备杀死:
  10.  
  11. select t2.username,t2.sid,t2.serial#,t2.logon_time from v$locked_object t1,v$session t2 where t1.session_id=t2.sid order by t2.logon_time;
  12.  
  13. 3、杀死该session:   
  14.  
  15. alter system kill session 'sid,serial#'
  16.  
  17. No grammar constraints (DTD or XML Schema) referenced in the document.
Add Comment
Please, Sign In to add comment