heavy table in mysql

Solutions on MaxInterview for heavy table in mysql by the best coders in the world

showing results for - "heavy table in mysql"
Isabelle
28 Mar 2018
1SELECT table_name AS "Table",
2ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
3FROM information_schema.TABLES
4WHERE (data_length + index_length) > 1000000  AND table_schema = "magento" 
5ORDER BY (data_length + index_length) DESC;