2026-03-12 20:23:15
This commit is contained in:
22
timhall/monitoring/latch_holders.sql
Normal file
22
timhall/monitoring/latch_holders.sql
Normal file
@@ -0,0 +1,22 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/monitoring/latch_holders.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays information about all current latch holders.
|
||||
-- Requirements : Access to the V$ views.
|
||||
-- Call Syntax : @latch_holders
|
||||
-- Last Modified: 15-JUL-2000
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET LINESIZE 200
|
||||
|
||||
SELECT l.name "Latch Name",
|
||||
lh.pid "PID",
|
||||
lh.sid "SID",
|
||||
l.gets "Gets (Wait)",
|
||||
l.misses "Misses (Wait)",
|
||||
l.sleeps "Sleeps (Wait)",
|
||||
l.immediate_gets "Gets (No Wait)",
|
||||
l.immediate_misses "Misses (Wait)"
|
||||
FROM v$latch l,
|
||||
v$latchholder lh
|
||||
WHERE l.addr = lh.laddr
|
||||
ORDER BY l.name;
|
||||
Reference in New Issue
Block a user