Skip to content

Instantly share code, notes, and snippets.

@staabm
Created February 25, 2013 13:16
Show Gist options
  • Save staabm/5029726 to your computer and use it in GitHub Desktop.
Save staabm/5029726 to your computer and use it in GitHub Desktop.
SELECT CONCAT(table_schema, '.', table_name),
ROUND(table_rows / 1000000, 2) rowsInMega,
ROUND(data_length / ( 1024 * 1024 * 1024 ), 2) dataInGiga,
ROUND(index_length / ( 1024 * 1024 * 1024 ), 2) idxInGiga,
ROUND(( data_length + index_length ) / ( 1024 * 1024 * 1024 ), 2) totalSizeInGiga,
ROUND(index_length / data_length, 2) idxfrac
FROM information_schema.TABLES
ORDER BY data_length + index_length DESC
LIMIT 30;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment