How to use commands to view Mysql database size _ MySQL

Source: Internet
Author: User
How to use commands to view the Mysql database size bitsCN.com

How to use commands to view the Mysql database size

1. enter the specified schema database (storing the information of other databases)

1

Use information_schema

2. query the size of all data

1

Select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'mb') as data from TABLES

3. view the size of the specified database

For example, database apoyl

1

Select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'mb') as data from TABLES where table_schema = 'apoyl ';

4. view the table size of the specified database

For example, the apoyl_test table in the database apoyl

1

Select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'MB ') as data from TABLES where table_schema = 'apoyl' and table_name = 'apoyl _ test ';

If you are interested, try it! Pretty easy to use

BitsCN.com

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.