Find out how much space is left in each tablespace.
Select tablespace_name, sum(bytes) bytes
From dba_free_space
Group by tablespace_name;
How to find out how much space is left in each tablespace
Find out how much space is left in each tablespace.
Select tablespace_name, sum(bytes) bytes
From dba_free_space
Group by tablespace_name;