How to list size of all tables of a mysql database
List the size of all tables for a mysql database:
SELECT table_name AS "Table", round(((data_length + index_length) / 1024 / 1024), 2) as TEST FROM information_schema.TABLES WHERE table_schema = "cellercandani" order by TEST;
Newer Posts
Install knife-ec2 in Mac OS X 10.9.1
Install knife-ec2 in Mac OS X 10.9.1
Older Posts
Install vagrant-chef-zero on vagrant 1.6.3.1
Install vagrant-chef-zero on vagrant 1.6.3.1