Skip to content

Instantly share code, notes, and snippets.

@artiya4u
Created January 25, 2017 07:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artiya4u/d9a46b94aaa68b3416116c84664baa83 to your computer and use it in GitHub Desktop.
Save artiya4u/d9a46b94aaa68b3416116c84664baa83 to your computer and use it in GitHub Desktop.
Query to find database size.
SELECT sum(round(((data_length + index_length) / 1024 / 1024 / 1024), 2)) AS "Size in GB"
FROM information_schema.TABLES
WHERE table_schema = 'MY_DATABASE'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment