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 with query (summarization)

Re: help with query (summarization)

From: Fred <noway_at_jose.com>
Date: 4 Jun 2002 13:53:17 -0400
Message-ID: <20020604135317795-0400@news.his.com>


In <EY6L8.2378$H67.13089_at_tor-nn1.netcom.ca> Syltrem wrote:
> I`m having trouble finding the best way (or any way at all) to get a
> sum by tablespace, for the column "bytes" in this query. If possible,

Have you tried using COMPUTE SUM OF BYTES ON REPORT?

> have the same query print the details (that`s what it does now), then
> the summary. Oracle forces me to add the bytes column to my group by,
> therefore I do not get a sum... I don't think it`s worth posting what
> I`ve tried so far. Can someone help me? Thanks!
>
> select substr(owner,1,6) "Owner", SUBSTR(tablespace_name,1,17)
> "Tablespace",
> substr(segment_type,1,2) "Ty", substr(segment_name,1,31)
> "Segment", decode(floor(bytes/1024/1024/5), 0, bytes/1024 ||
> 'K', ltrim(TO_CHAR(bytes/1024/1024,'9999.9')) || 'M')
> "Size", extents "# Ext", next_extent/1024 "ExtSzK" from dba_
> segments where segment_name like upper('&segment_name%') escape '\'
> and tablespace_name like upper('&tablespace_name%')
> group by owner, segment_name, segment_type, tablespace_name, bytes,
> extents, next_extent
> having extents >= 0&min_nb_of_extents
> and bytes >= 0&min_size_mb*1024*1024
> order by owner, segment_name, segment_type desc;
>
>
>
> --
>
> Syltrem
> http://pages.infinit.net/syltrem (OpenVMS related web site - en
> franÁais) To reply to myself directly, remove .spammenot from my
> address
>
>
>
>
Received on Tue Jun 04 2002 - 12:53:17 CDT

Original text of this message

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