Logo Background

Oracle Session Wait Info

  • Sometimes Oracle database might utilize a lot of system resources due to some SQL waiting. The SQL line below will give a summary of session wait info: -

    Check Oracle Session Wait

    SQL> SELECT COUNT(*), event FROM v$session_wait
    WHERE state='WAITING' GROUP BY event ORDER BY 1 DESC

    Related Posts

    Previous
    Next
    » Oracle Session Level Hit Ratio
Leave a Comment