Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Script for checking temp usage
Michael -
I've had similar problems (although the pain isn't high enough for me to get in there and fix them yet). To do this I've set up a cron job to check every 15 minutes. The script I run is:
set lines 100 pages 87
column username format a10
column tablespace format a6 heading 'TBSP'
column segfile# format 999 heading 'FILE#'
column extents format 99999 heading 'EXT'
column blocks format 9999999
spool /tmp/sort&1
select s.username,
su.session_addr, su.session_num, su.sqladdr, su.tablespace, su.contents, su.segtype, su.segfile#, sum(su.extents) extents,
v$session s, v$sqlarea sa, v$parameter p
and s.sql_address=sa.address and p.name = 'db_block_size' and s.username <> 'SYS'
su.session_addr, su.session_num, su.sqladdr, su.tablespace, su.contents, su.segtype, su.segfile#, sa.sql_text
exit;
My ksh script checks to see if there are rows returned and if so sends me the information.
HTH! Linda
-----Original Message-----
Sent: Monday, September 10, 2001 10:20 AM
To: Multiple recipients of list ORACLE-L
Does anybody have a script that will tell you which session_ids are using temp and how much they are using? We occasionally get runaway sessions that don't release temp and this would allow us to easily locate the offending session.
I've already checked OraMag and used google with no significant results.
Thanks in advance.
--Michael
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Jenkins, Michael
INET: Michael.Jenkins_at_Nextel.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Liststo: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Sep 10 2001 - 11:53:13 CDT
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
![]() |
![]() |