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: space used by a user in a tablespace

Re: space used by a user in a tablespace

From: Michel Cadot <micadot2removethat_at_free.fr>
Date: Tue, 11 Nov 2003 20:49:29 +0100
Message-ID: <3fb13d2c$0$13269$626a54ce@news.free.fr>

"Tom" <tomNOSPAM_at_teameazyriders.com> a écrit dans le message de news:tZasb.829$bT1.5034150_at_news-text.cableinet.net...
> Hi,
>
> I need to find out the amount of space in actual MB, GB etc that a user is
> using. I know how to do this to determine the physical disk space a
> tablespace is taking up but is it possible to do the same but on a user by
> user level within a tablespace?
>
> This is on 8i and 9i on Solaris and Linux
>
> thanks
>
>

Something like:
select tablespace_name, owner, sum(bytes) from dba_segments
group by tablespace_name, owner;

Hope this helps
Michel Cadot Received on Tue Nov 11 2003 - 13:49:29 CST

Original text of this message

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