viernes, 19 de noviembre de 2010

Script - Memoria PGA por session

Script para comprobar la memoria utilizada por una sesion

select name, sum(value/1024) "Value - KB"
 from v$statname n,
 v$session s,
 v$sesstat t
 where s.sid=t.sid
and s.sid=&&1
  and n.statistic# = t.statistic#
 and s.type = 'USER'
 and s.username is not NULL
 and n.name in ('session pga memory', 'session pga memory max', 'session uga memory', 'session uga memory max')
 group by name
/

No hay comentarios:

Publicar un comentario