Skip to content

Instantly share code, notes, and snippets.

@terrancesnyder
Created July 29, 2011 20:41
Show Gist options
  • Save terrancesnyder/1114699 to your computer and use it in GitHub Desktop.
Save terrancesnyder/1114699 to your computer and use it in GitHub Desktop.
oracle table sizes
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