Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Total size of the schema

SM_308Dec 7 2007 — edited Dec 7 2007

Is this the right script to find the total size of a schema

select owner, sum(bytes)/1024/1024 mb from dba_segments where owner in(select username from dba_users where username='schema_name') GROUP BY owner order by mb desc;
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 4 2008
Added on Dec 7 2007
2 comments
468 views