Example of how to check the capacity of MySQL database table

Example of how to check the capacity of MySQL database table

This article introduces the command statements for checking the capacity of database tables in MySQL, and provides complete query statements and examples for easy learning and use.

1. View the capacity of all databases

select 
table_schema as 'database',
sum(table_rows) as 'Number of records',
sum(truncate(data_length/1024/1024, 2)) as 'Data capacity (MB)',
sum(truncate(index_length/1024/1024, 2)) as 'Index capacity (MB)'
from information_schema.tables
group by table_schema
order by sum(data_length) desc, sum(index_length) desc;

2. View the capacity of all database tables

select 
table_schema as 'database',
table_name as 'table name',
table_rows as 'number of records',
truncate(data_length/1024/1024, 2) as 'Data capacity (MB)',
truncate(index_length/1024/1024, 2) as 'Index capacity (MB)'
from information_schema.tables
order by data_length desc, index_length desc;

3. Check the capacity of the specified database

Example: Check the capacity of the mysql database

select 
table_schema as 'database',
sum(table_rows) as 'Number of records',
sum(truncate(data_length/1024/1024, 2)) as 'Data capacity (MB)',
sum(truncate(index_length/1024/1024, 2)) as 'Index capacity (MB)'
from information_schema.tables
where table_schema='mysql'; 

這里寫圖片描述

4. Check the capacity of each table in the specified database

Example: Check the capacity of each table in the MySQL database

select 
table_schema as 'database',
table_name as 'table name',
table_rows as 'number of records',
truncate(data_length/1024/1024, 2) as 'Data capacity (MB)',
truncate(index_length/1024/1024, 2) as 'Index capacity (MB)'
from information_schema.tables
where table_schema='mysql'
order by data_length desc, index_length desc; 

這里寫圖片描述

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of MySQL database binlog cleanup command
  • MySQL Database Iron Laws (Summary)
  • How to compare two database table structures in mysql
  • Method of using MySQL system database for performance load diagnosis
  • mysql create database, add users, user authorization practical method

<<:  Native js to achieve puzzle effect

>>:  When setting up Jenkins in Docker environment, the console log shows garbled Chinese characters when building tasks

Recommend

The difference between MySQL execute, executeUpdate and executeQuery

The differences among execute, executeUpdate, and...

Basic usage examples of listeners in Vue

Table of contents Preface 1. Basic usage of liste...

Some references about colors in HTML

In HTML, colors are represented in two ways. One i...

MySQL slow query operation example analysis [enable, test, confirm, etc.]

This article describes the MySQL slow query opera...

A brief discussion on the understanding of TypeScript index signatures

Table of contents 1. What is an index signature? ...

vue.js Router nested routes

Preface: Sometimes in a route, the main part is t...

React ref usage examples

Table of contents What is ref How to use ref Plac...

Six tips to increase web page loading speed

Secondly, the ranking of keywords is also related ...

Detailed steps for porting busybox to build a minimal root file system

Busybox: A Swiss Army knife filled with small com...

Detailed explanation of vite2.0 configuration learning (typescript version)

introduce You Yuxi’s original words. vite is simi...

Use vue3 to implement a human-cat communication applet

Table of contents Preface Initialize the project ...

How to build a multi-node Elastic stack cluster on RHEL8 /CentOS8

Elastic stack, commonly known as ELK stack, is a ...

How are Vue components parsed and rendered?

Preface This article will explain how Vue compone...

Detailed explanation of how to gracefully delete a large table in MySQL

Preface To delete a table, the command that comes...