如何得知哪些Oracle用戶CPU使用較多

如何得知哪些Oracle用戶CPU使用較多

如何知道使用CPU多的用戶Session

SQL 語法 :

select a.sid,spid,status,a.program,a.terminal,a.osuser,c.value cpu_usage

from v$session a,v$process b,v$sesstat c

where c.statistic#=11 and c.sid=a.sid and a.paddr=b.addr

order by cpu_usage desc

PS : c.statistic#=11, 11 是 CPU used by this session