/*
This file is part of demos for "Mutex Internals" seminar v.04.04.2011
Andrey S. Nikolaev (Andrey.Nikolaev@rdtex.ru)
http://andreynikolaev.wordpress.com
Last waits for mutexes from v$session_wait_history
Some columns were not printed to fit linesize 80. You can adjust this.
usage: @mutex_last_waits
*/
col sid format 9999
col serial# noprint format 9999
col event format a19
col blocking_sid heading "BLKS" format 9999
col shared_refcount heading "RFC" format 99
col location_id heading "LOC" format 99
col sleeps noprint format 99999
col mutex_object format a15
col count format 999
col wtime format 9999999
set wrap off
set pagesize 3000
SELECT SID,wait_time wtime,event,p1 idn,
FLOOR (p2/POWER(2,4*ws)) blocking_sid,MOD (p2,POWER(2,4*ws)) shared_refcount,
FLOOR (p3/POWER (2,4*ws)) location_id,MOD (p3,POWER(2,4*ws)) sleeps,
CASE WHEN (event LIKE 'library cache:%' AND p1 <= power(2,17)) THEN 'library cache bucket: '||p1
ELSE (SELECT kglnaobj FROM x$kglob WHERE kglnahsh=p1 AND (kglhdadr = kglhdpar) and rownum=1) END mutex_object
FROM (SELECT DECODE (INSTR (banner, '64'), 0, '4', '8') ws FROM v$version WHERE ROWNUM = 1) wordsize,
v$session_wait_history
WHERE p1text='idn';
mutex_last_waits.sql
1 Comment »
RSS feed for comments on this post. TrackBack URI
[...] mutex_last_waits.sql – list up to last 10 session waits for mutexes from v$session_wait_history [...]
Pingback by “Cursor: pin S” mutex contention testcase and diagnostics tools. « Latch, mutex and beyond — April 22, 2011 @ 4:33 pm |