How to get size of mysql database?

前端 未结 9 1987
栀梦
栀梦 2020-11-27 08:43

How to get size of a mysql database?
Suppose the target database is called \"v3\".

9条回答
  •  天命终不由人
    2020-11-27 09:14

    Run this query and you'll probably get what you're looking for:

    SELECT table_schema "DB Name",
            ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
    FROM information_schema.tables 
    GROUP BY table_schema; 
    

    This query comes from the mysql forums, where there are more comprehensive instructions available.

提交回复
热议问题