V$SGA definition in Oracle Database 11.2
V$SGA

select
  NAME,                                    -- NAME VARCHAR2(20)
  VALUE                                    -- VALUE NUMBER
from
  GV$SGA
where
  inst_id = USERENV('Instance')

home |  up