Query to check all the schemas and their sizes

 

 

select OWNER,sum(bytes)/1024/1024/1000 “SIZE_IN_GB” from dba_segments group by owner order by owner;

Recent Posts