V$SEGSTAT_NAME definition in Oracle Database 11.2
V$SEGSTAT_NAME

select
  statistic#,                              -- STATISTIC# NUMBER
  name,                                    -- NAME VARCHAR2(64)
  sampled                                  -- SAMPLED VARCHAR2(3)
from
  gv$segstat_name
where
  inst_id = userenv('instance')

home |  up