Count the size of a MySQL DATA table

Source: Internet
Author: User
Tags mysql manual

How can I query the size of each table in the MySQL database?

MySQL has a database named information_schema, which has a TABLES Table. The main fields of this table are:

TABLE_SCHEMA: Database Name
TABLE_NAME: Table Name
ENGINE: The storage ENGINE used
TABLES_ROWS: number of records
DATA_LENGTH: data size
INDEX_LENGTH: Index size

For other fields, see the MySQL manual.

Use information_schema; SELECT TABLE_NAME, (DATA_LENGTH/1024/1024) as DataM, (INDEX_LENGTH/1024/1024) as IndexM, (DATA_LENGTH + INDEX_LENGTH)/1024/1024) as AllM, TABLE_ROWSFROM TABLESWHERE TABLE_SCHEMA = 'db _ ip ';

Related Article

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.