10G ASH script :True Session Wait Activity in Oracle 10g
1> What resource is currently in high demand?
select active_session_history.event , sum ( active_session_history.wait_time + active_session_history.time_waited ) ttl_wait_time from v$active_session_history active_session_history where active_session_history.sample_time between sysdate – 60 / 2880 and sysdate group by active_session_history.event order by 2
2> Which user is waiting the most?
select sesion.sid , sesion.username , sum ( active_session_history.wait_time + active_session_history.time_waited ) ttl_wait_time from v$active_session_history active_session_history , v$session sesion where active_session_history.sample_time between sysdate - 60 / 2880 and sysdate and active_session_history.session_id = sesion.sid group by sesion.sid , sesion.username order by 3SID User TTL_WAIT_TIME
—– ———- ————-
135 SCOTT 91167481
149 SCOTT 107409491
153 SCOTT 110796799
3> What SQL is currently using the most resources?
select active_session_history.user_id , dba_users.username , sqlarea.sql_text , sum ( active_session_history.wait_time + active_session_history.time_waited ) ttl_wait_time from v$active_session_history active_session_history , v$sqlarea sqlarea , dba_users where active_session_history.sample_time between sysdate - 60 / 2880 and sysdate and active_session_history.sql_id = sqlarea.sql_id and active_session_history.user_id = dba_users.user_id group by active_session_history.user_id , sqlarea.sql_text , dba_users.username order by 4;USER_ID User SQL_TEXT TTL_WAIT_TIME
——- —— —————————————————– ————-
57 SCOTT insert into sys.sourcetable (select * from sys.source$) 304169752
4> What object is currently causing the highest resource waits?
select dba_objects.object_name , dba_objects.object_type , active_session_history.event , sum ( active_session_history.wait_time + active_session_history.time_waited ) ttl_wait_time from v$active_session_history active_session_history , dba_objects where active_session_history.sample_time between sysdate - 60 / 2880 and sysdate and active_session_history.current_obj# = dba_objects.object_id group by dba_objects.object_name , dba_objects.object_type , active_session_history.event order by 4
Leave a Reply
You must be logged in to post a comment.