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

Home -> Community -> Usenet -> c.d.o.server -> Help! What is wrong with this query

Help! What is wrong with this query

From: Sunit Joshi <sjoshi_at_ingr.com>
Date: 26 Mar 2002 07:07:49 -0800
Message-ID: <8f8ffe67.0203260707.53018305@posting.google.com>


Hello
I can't seem to get correct values for some of the tablespace with this query.

select o.tablespace_name, round(sum(o.bytes/(1024 * 1024)),2) "Total(MB)", round(sum(u.bytes/(1024 *1024)),2) "FreeMB" from dba_data_files o, dba_free_space u
where o.tablespace_name = u.tablespace_name group by o.tablespace_name;

thanks
Sunit Received on Tue Mar 26 2002 - 09:07:49 CST

Original text of this message

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