ORACLE10G清除死锁进程
select Distinct 'alter system kill session '||chr(39)||b.sid||','||b.serial#||chr(39)||';'As 组装语句在RAC执行时区分节点,b.username,b.logon_timefrom v$locked_object a,v$session bwhere a.session_id=b.sidorder by b.logon_time;;