Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to check the usage size of each database in mysql and the last modification time of each table in the library

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces how to check the size of mysql databases and the last modification time of each table in the library. It has certain reference value. Interested friends can refer to it. I hope you will gain a lot after reading this article. Let Xiaobian take you to understand it together.

These two statements are still relatively common when maintaining mysql at ordinary times

1. View database sizes

SELECT sum(DATA_LENGTH)+sum(INDEX_LENGTH) FROM information_schema.tables where TABLE_SCHEMA='database_name';

The result is in bytes, K divided by 1024 and M divided by 1048576.

2. View the last mysql modification time of the table

SELECT TABLE_NAME,UPDATE_TIME FROM information_schema.tables where TABLE_SCHEMA='database_name';

By looking at the last update time of the table in the database. (It has not been updated for a long time, but it does not mean that it is not used now.)

Thank you for reading this article carefully. I hope Xiaobian will share "How to check the size of mysql databases and the last modification time of each table in the database". This article is helpful to everyone. At the same time, I hope you will support it a lot. Pay attention to the industry information channel. More relevant knowledge is waiting for you to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report