查看 Mysql 数据量 (data size)

MySQL 获取数据库 data size:

SELECT table_schema "Data Base Name",
    sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB",
    sum( data_free )/ 1024 / 1024 "Free Space in MB"
FROM information_schema.TABLES
GROUP BY table_schema ;

MySQL 获取某schema中每个表的行数:

SELECT table_name, table_rows, data_length, index_length, 
round(((data_length + index_length) / 1024 / 1024),2) "Size in MB"
FROM information_schema.TABLES where table_schema = "schema_name";

 

posted @ 2016-03-26 01:27  still_water  阅读(2845)  评论(0编辑  收藏  举报