Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Free space for all tablespaces

Free space for all tablespaces

From: <blair_at_pjm.com>
Date: Tue, 11 Jul 2000 08:50:03 -0400
Message-Id: <10555.111653@fatcity.com>


I just want a SQL query to give me the freespace in all tablespaces. This doesn't work:

select a.tablespace_name, sum(a.bytes) TOTAL_SPACE, sum(b.bytes)a FREE_SPACE from sys.dba_data_files a, sys.dba_free_space b where a.tablespace_name = b.tablespace_name group by 1;

Does anyone have a query that does work??

thanks,

..tom Received on Tue Jul 11 2000 - 07:50:03 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US