1. Home
  2. Knowledge Base
  3. Performance Tuning
  4. Script – Sessions Waiting On A Particular Wait Event
  1. Home
  2. Knowledge Base
  3. Scripts
  4. Script – Sessions Waiting On A Particular Wait Event

Script – Sessions Waiting On A Particular Wait Event

SELECT count(*), event
FROM v$session_wait
WHERE wait_time = 0
AND event NOT IN ('smon timer','pipe get','wakeup time manager',
'pmon timer','rdbms ipc message', 'SQL*Net message from client')
GROUP BY event
ORDER BY 1 DESC;
The following two tabs change content below.

Gavin Soorma

Latest posts by Gavin Soorma (see all)

Updated on June 2, 2021

Was this article helpful?

Related Articles

Leave a Comment