PLSQLDevelop 查询当前未完成的会话

View Code
select t1.sid, t1.serial#, t1.username, t1.logon_time from v$session t1 , v$locked_object t2
where t1.sid = t2.session_id order by t1.logon_time
原文地址:https://www.cnblogs.com/YangBinChina/p/2857702.html