select s.username username,s.serial# serial,se.sid,n.name,
       max(se.value) maxmem
from v$sesstat se,
     v$statname n,
     v$session s
where n.statistic# = se.statistic#
and s.sid=se.sid
and s.username is not null
group by n.name,se.sid,s.username,s.serial#
order by 2

相关文章:

  • 2021-11-23
  • 2021-11-22
  • 2022-02-09
  • 2022-01-22
  • 2022-12-23
  • 2021-11-17
  • 2022-02-16
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2022-02-16
  • 2022-01-05
  • 2021-12-17
相关资源
相似解决方案