Showing posts with label Query to find free space in temporary tablesapce:. Show all posts
Showing posts with label Query to find free space in temporary tablesapce:. Show all posts

Friday, February 20, 2009

Query to find free space in temporary tablesapce:

SELECT tablespace_name,SUM(bytes_used),SUM(bytes_free) FROM V$temp_space_header GROUP BY tablespace_name;