Skip to content

Instantly share code, notes, and snippets.

@bakks
Created January 30, 2015 02:57
Show Gist options
  • Save bakks/e07e4062e34de02eedb5 to your computer and use it in GitHub Desktop.
Save bakks/e07e4062e34de02eedb5 to your computer and use it in GitHub Desktop.
Show MySQL data sizes
SELECT table_schema "Data Base Name",
SUM(data_length ) / 1024 / 1024 / 1024 "Data GB" ,
SUM(index_length) / 1024 / 1024 / 1024 "Index GB" ,
sum(data_free ) / 1024 / 1024 / 1024 "Free GB",
SUM( data_length + index_length) / 1024 / 1024 / 1024 "Full Data size in GB"
FROM information_schema.TABLES
GROUP BY table_schema;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment