Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> TEMP tablespace - objects in
--=====================_182596760==_.ALTContent-Type: text/plain; charset="us-ascii"
Hi
Im trying to find what objects are filling up our temp ts using this sql on a 734 db but it returns the error:
from v$session s, v$sort_usage u
*
Any ideas. I got the sql from the list - cant remeber who. Full sql below.
Ive looked at the objects in the temp ts using dbartisan and there is just one - SYS.8.21107 occupying 999M in our IG temp ts.
John
select s.username, u."USER", u.tablespace,
u.contents, u.extents, u.blocks
from v$session s, v$sort_usage u
where s.addr = u.session_addr;
--=====================_182596760==_.ALTContent-Type: text/html; charset="us-ascii"
<html>
Hi<br>
<br>
Im trying to find what objects are filling up our temp ts using this sql
on a 734 db but it returns the error:<br>
<br>
<font face="r_ansi">from v$session s, v$sort_usage u<br>
*<br>
ERROR at line 3:<br>
ORA-00942: table or view does not exist<br>
<br>
</font>Any ideas. I got the sql from the list - cant remeber who. Full
sql below.<br>
<br>
Ive looked at the objects in the temp ts using dbartisan and there is
just one - SYS.8.21107 occupying 999M in our IG temp ts.<br>
<br>
John<br>
<br>
<br>
<font face="r_ansi">select s.username, u."USER",
u.tablespace,<br>
u.contents, u.extents,
u.blocks<br>
from v$session s, v$sort_usage u<br>
where s.addr = u.session_addr;<br>
</font></html>
Received on Wed Jun 28 2000 - 11:40:52 CDT