Created
July 29, 2011 20:41
-
-
Save terrancesnyder/1114699 to your computer and use it in GitHub Desktop.
oracle table sizes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Select sum(bytes)/1024/1024 Mb, tablespace_name, segment_name | |
from user_segments | |
group by tablespace_name, segment_name | |
order by sum(bytes)/1024/1024 desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment