среда, 22 июня 2016 г.

TEMP tablespace usage history

V$TEMPSEG_USAGE

  1. SELECT username,
  2. session_addr,
  3. session_num,
  4. sqladdr,
  5. sqlhash,
  6. sql_id,
  7. contents,
  8. segtype,
  9. extents,
  10. blocks
  11. FROM v$tempseg_usage
  12. ORDER BY username;

Script to display the recent activity

  1. select distinct
  2. c.username "user",
  3. c.osuser ,
  4. c.sid,
  5. c.serial#,
  6. 'alter system kill session ''' || c.sid || ',' || c.serial# || ''' immediate;' kill_session_cmd,
  7. b.spid "unix_pid",
  8. c.machine,
  9. c.program "program",
  10. a.blocks * e.block_size/1024/1024 mb_temp_used ,
  11. a.tablespace,
  12. d.sql_text
  13. from
  14. v$tempseg_usage a, /* v$sort_usage */
  15. v$process b,
  16. v$session c,
  17. v$sqlarea d,
  18. dba_tablespaces e
  19. where c.saddr=a.session_addr
  20. and b.addr=c.paddr
  21. and a.sqladdr=d.address(+)
  22. and a.tablespace = e.tablespace_name
  23. order by mb_temp_used desc;

TEMP tablespace usage history

A views V$ACTIVE_SESSION_HISTORY and DBA_HIST_ACTIVE_SESS_HISTORY include temp_space_allocated field.
Script below showing last 7 days top 5 SQLs for each day of temp tablespace consumers:
  1. select t.sample_time, t.sql_id, t.temp_mb, t.temp_diff
  2. ,s.sql_text
  3. from (
  4. select --session_id,session_serial#,
  5. --'alter system kill session ''' || session_id || ',' || session_serial# || ''' immediate;' kill_session_cmd,
  6. trunc(sample_time) sample_time,sql_id, sum(temp_mb) temp_mb, sum(temp_diff) temp_diff
  7. , row_number() over (partition by trunc(sample_time) order by sum(temp_mb) desc nulls last) as rn
  8. from (
  9. select sample_time,session_id,session_serial#,sql_id,temp_space_allocated/1024/1024 temp_mb,
  10. temp_space_allocated/1024/1024-lag(temp_space_allocated/1024/1024,1,0) over (order by sample_time) as temp_diff
  11. --from dba_hist_active_sess_history
  12. from v$active_session_history
  13. where 1 = 1
  14. -- session_id=&1
  15. -- and session_serial#=&2
  16. )
  17. group by --session_id,session_serial#,
  18. trunc(sample_time),
  19. sql_id
  20. ) t
  21. left join v$sqlarea s
  22. on s.sql_id = t.sql_id
  23. where 1 = 1
  24. and rn <=5
  25. and sample_time >= trunc(sysdate) - 7
  26. order by sample_time desc, temp_mb desc
To release TEMP space usage before shrinking temporary tablespace use:
  1. select distinct
  2. session_id,session_serial#,
  3. 'alter system kill session ''' || session_id || ',' || session_serial# || ''' immediate;' kill_session_cmd
  4. from v$active_session_history
  5. where 1 = 1
  6. and sql_id='&3'