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

Home -> Community -> Usenet -> c.d.o.misc -> Re: size of user

Re: size of user

From: Daniel Morgan <dmorgan_at_exesolutions.com>
Date: Thu, 06 Jun 2002 20:27:56 GMT
Message-ID: <3CFFC5C2.9961F2FF@exesolutions.com>


Uwe Wagner wrote:

> Hi,
>
> I want to know the bytes used by all tables from one user.
> Is this information available from a table or view ?
>
> uwe

SELECT SUM(bytes)/1024/1024 MB_USED
FROM user_segments;

or

SELECT SUM(bytes)/1024/1024 MB_USED
FROM all_segments
WHERE owner = <owner_name>;

Daniel Morgan Received on Thu Jun 06 2002 - 15:27:56 CDT

Original text of this message

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