Files
oracle/vdh/uga_usage.sql
2026-03-12 21:23:47 +01:00

12 lines
161 B
SQL

select
a.name,
avg(b.value)
from
v$statname a,
v$sesstat b
where
a.statistic# = b.statistic#
and a.name like '%uga%'
group by
a.name