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!
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;