博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 数据库磁盘占用量统计
阅读量:5267 次
发布时间:2019-06-14

本文共 513 字,大约阅读时间需要 1 分钟。

查看某个表的磁盘占用量

select     (data_length+index_length)/1024/1024 M from information_schema.tables where table_schema="db_name" and table_name='table_name';

查看整个数据库的磁盘用量

select     sum((data_length+index_length)/1024/1024) M from information_schema.tables where table_schema="db_name" ;

 

查看整个mysql server 所有数据库的磁盘用量

select     table_schema, sum((data_length+index_length)/1024/1024) M from information_schema.tables where table_schema is not null group by table_schema ;

 

转载于:https://www.cnblogs.com/exmyth/p/9140182.html

你可能感兴趣的文章
Karma 4 - Karma 集成 Webpack 进行单元测试
查看>>
第五周作业
查看>>
Translation of good sentences
查看>>
Java 中的 static 使用之静态初始化块
查看>>
linux压缩解压
查看>>
在网页上点击图片显示大图
查看>>
Magento控制器
查看>>
启用yarn日志聚集功能
查看>>
iOS 阶段学习第四天笔记(循环)
查看>>
Hibernate 多对多
查看>>
Nebula3 Light && Shadow 系统
查看>>
CSS_绝对定位偏移
查看>>
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
查看>>
T-SQL查询进阶--深入浅出视图
查看>>
[.NET Core 24]把project.json迁移到.csproj
查看>>
卸载、指定卸载 .NET Core Runtime and SDK
查看>>
Django - 获取请求方式
查看>>
子网掩码
查看>>
相对导入与绝对导入
查看>>
71.Edit Distance(编辑距离)
查看>>