当前位置:网站首页>Check the disk usage of MySQL database
Check the disk usage of MySQL database
2022-07-01 01:40:00 【Long song of imperial sword】
see mysql Disk usage of each database
select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size,
concat(truncate(sum(index_length)/1024/1024,2),'MB') as index_size
from information_schema.tables
group by TABLE_SCHEMA
order by data_size desc;
View the disk usage of all databases of the database instance
select concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size from information_schema.tables;
Query the disk usage of the specified database
select concat(truncate(sum(data_length)/1024/1024,2),’ MB’) as data_size from information_schema.tables where table_schema=‘information_schema’;
边栏推荐
- 关于白盒测试,这些技巧你得游刃有余~
- flutter报错 -- The argument type ‘Function‘ can‘t be assigned to the parameter type ‘void Function()?‘
- Try new possibilities
- Basic knowledge II - Basic definitions related to sta
- 图灵奖得主LeCun指明AI未来的出路在于自主学习,这家公司已踏上征途
- 那些一门心思研究自动化测试的人,后来怎样了?
- Working for eight years as a programmer, but with a salary of three years after graduation, it's too late to be enlightened again
- 日志 logrus第三方库的使用
- 数学知识:满足条件的01序列—求组合数
- 尝试新的可能
猜你喜欢
Basic knowledge 3 - standard unit library
3500字归纳总结:一名合格的软件测试工程师需要掌握的技能大全
With regard to the white box test, you have to master these skills~
Sun Yuchen told Swiss media Bilan that the bear market will not last long
图灵奖得主LeCun指明AI未来的出路在于自主学习,这家公司已踏上征途
45岁程序员告诉你:程序员为什么要跳槽,太真实...
那些一门心思研究自动化测试的人,后来怎样了?
Digital IC design process summary
Working for eight years as a programmer, but with a salary of three years after graduation, it's too late to be enlightened again
The argument type 'function' can't be assigned to the parameter type 'void function()‘
随机推荐
Handsontable數據網格組件
未来的 Web3会带来什么?
数学知识:满足条件的01序列—求组合数
Thinking brought by strictmode -strictmode principle (5)
After working for 6 years, let's take stock of the golden rule of the workplace where workers mix up
Try new possibilities
[无线通信基础-15]:图解移动通信技术与应用发展-3- 数字通信2G GSM、CDMA、3G WDCMA/CDMA200/TD-SCDMA、4G LTE、5G NR概述
Sort custom function
gin_ gorm
Understanding and application of Qt5 layout in creation
关于白盒测试,这些技巧你得游刃有余~
6月第4周榜单丨飞瓜数据UP主成长排行榜(哔哩哔哩平台)发布!
Note d'étude du DC: zéro dans le chapitre officiel - - Aperçu et introduction du processus de base
Relationship between ASCII, Unicode, GBK, UTF-8
Composants de la grille de données portatifs
PHP crawls data through third-party plug-ins
System settings large page
Open3d point cloud color rendering
测试必备工具-Postman实战教程
Log logrus third party library usage