码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 查看数据库大小

时间:2016-10-25 20:15:46      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:mysql   数据库   

1 命令行进入数据库

[root@80 ~]# mysql -uroot -p
Enter password:

2 查看数据库

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+

3 查看information_schema的"TABLES"

mysql> use information_schema;
| TABLES                                |

4 查看字段结构

mysql> desc tables;
+-----------------+---------------------+------+-----+---------+-------+
| Field           | Type                | Null | Key | Default | Extra |
+-----------------+---------------------+------+-----+---------+-------+
| TABLE_CATALOG   | varchar(512)        | NO   |     |         |       |
| TABLE_SCHEMA    | varchar(64)         | NO   |     |         |       |
| TABLE_NAME      | varchar(64)         | NO   |     |         |       |
| TABLE_TYPE      | varchar(64)         | NO   |     |         |       |
| ENGINE          | varchar(64)         | YES  |     | NULL    |       |
| VERSION         | bigint(21) unsigned | YES  |     | NULL    |       |
| ROW_FORMAT      | varchar(10)         | YES  |     | NULL    |       |
| TABLE_ROWS      | bigint(21) unsigned | YES  |     | NULL    |       |
| AVG_ROW_LENGTH  | bigint(21) unsigned | YES  |     | NULL    |       |
| DATA_LENGTH     | bigint(21) unsigned | YES  |     | NULL    |       |
| MAX_DATA_LENGTH | bigint(21) unsigned | YES  |     | NULL    |       |
| INDEX_LENGTH    | bigint(21) unsigned | YES  |     | NULL    |       |
| DATA_FREE       | bigint(21) unsigned | YES  |     | NULL    |       |
| AUTO_INCREMENT  | bigint(21) unsigned | YES  |     | NULL    |       |
| CREATE_TIME     | datetime            | YES  |     | NULL    |       |
| UPDATE_TIME     | datetime            | YES  |     | NULL    |       |
| CHECK_TIME      | datetime            | YES  |     | NULL    |       |
| TABLE_COLLATION | varchar(32)         | YES  |     | NULL    |       |
| CHECKSUM        | bigint(21) unsigned | YES  |     | NULL    |       |
| CREATE_OPTIONS  | varchar(255)        | YES  |     | NULL    |       |
| TABLE_COMMENT   | varchar(2048)       | NO   |     |         |       |
+-----------------+---------------------+------+-----+---------+-------+

5 查看DB的数据大小

mysql> select table_schema,round(sum(DATA_LENGTH)/1024/1024,2) as table_size from tables group by table_schema;
+--------------------+------------+
| table_schema       | table_size |
+--------------------+------------+
| bomo_backend       |       0.09 |
| test1              |     234.16 |
| test2              |       0.17 |
| information_schema |       0.00 |
| mysql              |       0.71 |
| performance_schema |       0.00 |
| test               |       0.03 |
+--------------------+------------+

6 查看table的数据大小

mysql> select table_schema,table_name,concat(round(data_length/1024/1024,2),‘M‘) as table_size from tables where table_schema = ‘grab‘;
+--------------+--------------+------------+
| table_schema | table_name   | table_size |
+--------------+--------------+------------+
| grab         | product      | 215.12M    |
| grab         | result       | 13.52M     |
| grab         | rule         | 0.02M      |
| grab         | task         | 5.52M      |
+--------------+--------------+------------+


本文出自 “老炮儿” 博客,转载请与作者联系!

Mysql 查看数据库大小

标签:mysql   数据库   

原文地址:http://joelemma.blog.51cto.com/11189330/1865330

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!