V$LATCHNAME definition in Oracle Database 11.2
V$LATCHNAME

select
  latch#,                                  -- LATCH# NUMBER
  name,                                    -- NAME VARCHAR2(64)
  hash                                     -- HASH NUMBER
from
  gv$latchname
where
  inst_id = userenv('Instance')

home |  up