Search notes:

Oracle: X$KSQST

Enqueue management statistics by type.
ksqstwat: The number of wait for the enqueue statistics class.
ksqstwtim: Cumulated waiting time. This column is selected when v$enqueue_stat.cum_wait_time is selected.
select
   case when nvl(
      lag( ksq.ksqsttyp ) over (order by  ksq.ksqsttyp, ksq.ksqstrsn ),
      'n/a'
   ) <> ksqsttyp then ksq.ksqsttyp end ksqsttyp,
   ksq.ksqstrsn,   
   ksq.ksqstreq,
   ksq.ksqstwat,
   ksq.ksqstsgt,
   ksq.ksqstwtm,
   ksq.ksqstexpl,
   ksq.ksqstevidx
from
   x$ksqst ksq
order by
   ksq.ksqsttyp,
   ksq.ksqstrsn;

Type of classes

See also

fixed table

Index