2026-03-12 20:23:15
This commit is contained in:
20
timhall/monitoring/latches.sql
Normal file
20
timhall/monitoring/latches.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/monitoring/latches.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Displays information about all current latches.
|
||||
-- Requirements : Access to the V$ views.
|
||||
-- Call Syntax : @latches
|
||||
-- Last Modified: 15-JUL-2000
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET LINESIZE 200
|
||||
|
||||
SELECT l.latch#,
|
||||
l.name,
|
||||
l.gets,
|
||||
l.misses,
|
||||
l.sleeps,
|
||||
l.immediate_gets,
|
||||
l.immediate_misses,
|
||||
l.spin_gets
|
||||
FROM v$latch l
|
||||
ORDER BY l.name;
|
||||
Reference in New Issue
Block a user