在linux下oracle kill 使用者程式的方法

mahanso發表於2010-11-16

方法一:

1、select   sid,   serial#   from   v$session      
where   username   =   '使用者名稱 '   and      
status   =   'INACTIVE';

2、alter  system kill session 'sid,serial#';

方法二、linux下kill spid

查詢spid方法:

1、select  sid,serial#,paddr   from   v$session      
where   username   =   'QIANZU_NEW'   and      
status   =   'INACTIVE';

2、select * from v$process
where addr = '步驟1中paddr ';

3、kill  spid

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12272958/viewspace-678251/,如需轉載,請註明出處,否則將追究法律責任。

相關文章