Query Oracle Schema Size


To query Oracle to find the schema size run the following sql:

select owner,sum(bytes) from dba_segments
group by owner;

If you do not have dba privs then use the table user_segments instead of dba_segments.


Leave a Reply

Your email address will not be published. Required fields are marked *