Skip to content

Instantly share code, notes, and snippets.

@kvn1234
Created January 16, 2018 19:53
Show Gist options
  • Save kvn1234/4a15cae0aa0492c02b654199a90fed41 to your computer and use it in GitHub Desktop.
Save kvn1234/4a15cae0aa0492c02b654199a90fed41 to your computer and use it in GitHub Desktop.
Get size of mysql databases
SELECT table_schema 'database',
Round(Sum(data_length + index_length) / 1024 / 1024, 1)
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