Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

heavy table in mysql

SELECT table_name AS "Table",
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
FROM information_schema.TABLES
WHERE (data_length + index_length) > 1000000  AND table_schema = "magento" 
ORDER BY (data_length + index_length) DESC; 
 
PREVIOUS NEXT
Tagged: #heavy #table #mysql
ADD COMMENT
Topic
Name
7+4 =