Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: size of user
Thanks a lot for your help.
This is exactly, what I need.
uwe
"Daniel Morgan" <dmorgan_at_exesolutions.com> schrieb im Newsbeitrag
news:3CFFC5C2.9961F2FF_at_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 Mon Jun 10 2002 - 01:48:21 CDT
![]() |
![]() |