Created
January 25, 2017 07:34
-
-
Save artiya4u/d9a46b94aaa68b3416116c84664baa83 to your computer and use it in GitHub Desktop.
Query to find database size.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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