Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.

Let us know at info@questionaries.org

How do I find used/free space in a TEMPORARY tablespace?

3 like 0 dislike
Hello guys,

Anybody can tell me
How do I find used/free space in a TEMPORARY tablespace?
asked 1 year ago by daneim (127,080 points)

1 Answer

1 like 0 dislike
 
Best answer
Unlike normal tablespaces, true temporary tablespace information is not listed in DBA_FREE_SPACE. Instead use the V$TEMP_SPACE_HEADER view:

SELECT tablespace_name, SUM (bytes used), SUM (bytes free)
FROM V$temp_space_header
GROUP BY tablespace_name;
answered 1 year ago by marck_don (191,010 points)

Related questions

2 like 0 dislike
1 answer
3 like 0 dislike
1 answer
asked 1 year ago by daneim (127,080 points)
3 like 0 dislike
1 answer