MySQL query database size

Source: Internet
Author: User
Tags mysql command line

MySQL query database size

Step 1: First open the Mysql Command line and choose Start Menu> program> MySql-Command line client, as shown in Figure 1-1:

Figure 1-1

Step 2: Enter use information_schema 1-2 in the command:

Figure 1-2

Step 3: view the size of the specified database. Enter the following statement:

Select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'mb') as data from TABLES where table_schema = 'offlinecollectiondb'; where offlineCollectiondb2 is the database name, replace it with the name of the database you want to query, as shown in 1-3:

Figure 1-3

------------------------------------------- Split line ------------------------------------------------------------------------------------

1. query the size of all data

Select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'mb') as data from TABLES 2. view the table size of the specified database, for example, select concat (round (sum (DATA_LENGTH/1024/1024), 2), 'mb') as data from TABLES where table_schema = 'test' and table_name =;

This article permanently updates the link address:

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.