Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: What is on Temp tablespace....
Here is a script that will tell you who's got what in TEMP. I got it from
the list.
select distinct
b.sid,b.serial#,substr(b.username,1,8)USERNAME,b.process,
substr(c.segment_name,1,8)SEGMENT_NAME,substr(b.osuser,1,7)OS_USER,substr(b.
machine,1,6)M_NAME,
substr(b.program,1,12)PROGRAM
from v$access a, v$session b,dba_segments c
where c.owner= a.owner
and a.sid = b.sid and b.status = 'ACTIVE' and c.segment_type ='TEMPORARY'
HTH,
Ruth
----- Original Message -----
From: Aldi Barco <ipal_at_hotmail.com>
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
Sent: Tuesday, May 16, 2000 12:58 PM
Subject: What is on Temp tablespace....
> Hi list,
>
> There has been 3.8 GB used space on Temp tablespace for a day long.
> How to know what is currently Temp tablespace contain ?
> Tia.
>
> Aldi
> oracle DBA
>
> ________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com
>
> --
> Author: Aldi Barco
> INET: ipal_at_hotmail.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: 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 Wed May 17 2000 - 06:54:26 CDT
![]() |
![]() |