V$WAITSTAT definition in Oracle Database 11.2
V$WAITSTAT

select
  class,                                   -- CLASS VARCHAR2(18)
  count,                                   -- COUNT NUMBER
  time                                     -- TIME NUMBER
from
  gv$waitstat
where
  inst_id = USERENV('Instance')

home |  up