现在的位置: 首页 > 综合 > 正文

查看pga使用

2012年06月16日 ⁄ 综合 ⁄ 共 770字 ⁄ 字号 评论关闭
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

抱歉!评论已关闭.