Created
September 29, 2015 14:50
-
-
Save nickgravel/b602a401373ad12898af to your computer and use it in GitHub Desktop.
How To List MySQL Table Sizes in MB
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
-- Here’s a handy script to list your MySQL table sizes in MB. | |
SET @table_schema = '{YOUR_SCHEMA_NAME}'; -- replace with your schema name | |
SELECT table_name AS "Tables", | |
ROUND(((data_length + index_length) / 1024 / 1024), 2) "Size in MB" | |
FROM information_schema.TABLES | |
WHERE table_schema = @table_schema | |
ORDER BY (data_length + index_length) DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment