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
/* | |
USE IT WITH CAUTION (could overload and impact your production server...) | |
Feel free to add your own suggestion | |
Made for a MySQL 5.5 database | |
*/ | |
-- Biggest db (full schema) | |
SELECT | |
TABLE_SCHEMA, | |
SUM(ROUND(DATA_LENGTH/1024/1024,2)) as data_length_mb, |