|
Even though there's no child latch named like '%library%', there could still be wait events named like that. Check v$latchname or v$system_event. I think this means those events don't involve those latches any more.
In addition, there's still one latch with 'library' in the name:
SQL> select name from v$latchname where name like '%library%';
NAME
-------------------------------------------
library cache load lock
It doesn't have children.
Yong Huang |
|