Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> What causes TEMP segment use
I have a process as outlined below ...
Loop
Now, there are no following query shows number of extents used in v$sort_usage growing ... we send messages continuously few a minute.
SELECT s1.username, s1.sid, s1.serial#, s2.contents, s1.sql_address,
s2.extents
FROM v$session s1, v$sort_usage s2
WHERE s1.saddr = s2.session_addr
order by 6 desc
/
The question is if I am not performing any queries in my code, why should my usage of TEMP be increasing?? Maybe I am missing something here, but can't put my finger on it. This process last week failed with ora-1652, so I am trying to investigate that as well.
This is all on a 9204 dual node RAC instance.
Raj
![]() |
![]() |