【发布时间】:2014-05-08 19:43:45
【问题描述】:
set lines 100 pages 999
col ID format a15
select username
, sid || ',' || serial# "ID"
, status
, last_call_et "Last Activity"
from v$session
where username is not null
order by status desc
, last_call_et desc
/
上述查询对于显示 Session 是否正确 ID、所有者的用户名和会话状态(是 Waiting 还是 On CPU)?请指教
【问题讨论】: