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 -> Re: Help! What is wrong with this query

Re: Help! What is wrong with this query

From: Joe Maloney <mpir_at_bellsouth.net>
Date: 26 Mar 2002 12:42:31 -0800
Message-ID: <d17bad25.0203261242.7e892216@posting.google.com>


You don't say how your answers are wrong, but rounding will do it to you by 1 or 2 MB.

why not
select tablespace_name,sum(free)/1048576 Free,sum(alloc)/1048576 from {select tablespace_name,bytes Free,0 Alloc

      union
      select tablesapce_name,0 Free,bytes Alloc
     )

group by tablespace_name;

sjoshi_at_ingr.com (Sunit Joshi) wrote in message news:<8f8ffe67.0203260707.53018305_at_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 - 14:42:31 CST

Original text of this message

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