mysql查看数据库大小以及使用情况?

小草鱼2年前Linux技术相关1524


一、用SQL命令查看Mysql数据库大小

要想知道每个数据库的大小的话,步骤如下:


1、进入information_schema 数据库(存放了其他的数据库的信息)

use information_schema;


2、查询所有数据的大小

select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;


3、查看指定数据库的大小

比如查看数据库home的大小


select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';


4、查看指定数据库的某个表的大小

比如查看数据库home中 members 表的大小


select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members';


查看MySql数据空间使用情况:


information_schema是MySQL的系统数据库,information_schema里的tables表存放了整个数据库各个表的使用情况。


可以使用sql来统计出数据库的空间使用情况,相关字段:


table_schema:数据库名


table_name:表名


table_rows:记录数


data_length:数据大小


index_length:索引大小


二、使用空间

1、统计表使用空间

select concat(round(sum(data_length/1024/1024),2),'mb') as data from tables where table_schema='mydb' and table_name='mytable';


| data |


| 0.02mb |


1 row in set (0.00 sec)


2、统计数据库使用空间

select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='mydb';


3、统计所有数据使用空间

select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;


相关文章

每天给linux系统清内存脚本

for (( i = 0; i < 1000000000; i=(i+1) ))do         echo "密码" |...

Ubuntu删除多余内核的办法---转载

第一步:查看当前内核rew $ uname -a Linux rew 4.15.0-42-generic #45~16.04.1-Ubun...

ubuntu 20.04版本 命令行配置ip地址

修改网卡配置(电脑关机重启后仍旧有效)编辑网络配置文件root@it:~# vim /etc/netplan/00-installer-config.yaml# This is the network...

Ubuntu 22.04安装Easyconnect及兼容性问题解决(转载)

Ubuntu 20.04安装Easyconnect及兼容性问题解决一、Easyconnect客户端下载与安装安装:sudo dpkg -i EasyConeect运行:/usr/share/sangf...

Linux下的TCP测试工具

Linux下的TCP测试工具如何在 Linux 上安装 tcpping测量到远程主机的网络延迟的一种常用方法是使用ping应用程序。该ping工具依赖 ICMP ECHO 请求和回复数据包来测量远程主...

Linux的最基础常用操作命令

Linux的最基础常用操作命令

Linux下,一切皆文件;Linux系统的文件目录以及存储的内容:/boot:存放启动linux所必须的文件,包括内核文件,启动菜单配置文件;/bin:linux下最基本的用户命令,普通用户都有权执行...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。