标签:nes term 解决 order by 执行 oracle where time min
解决问题:
select a.username,a.sid,a.serial#,a.logon_time
from v$locked_object b,v$session a
where b.session_id=a.sid order by a.logon_time;
SELECT s.sid, s.serial#, s.username, s.schemaname, s.osuser, s.process, s.machine,
s.terminal, s.logon_time, l.type
FROM v$session s, v$lock l
WHERE s.sid = l.sid
AND s.username IS NOT NULL
ORDER BY sid;
标签:nes term 解决 order by 执行 oracle where time min
原文地址:https://www.cnblogs.com/null/p/11214011.html