Mysql releases space. mysql releases space.

Source: Internet
Author: User

Mysql releases space. mysql releases space.
Mysql releases Space
Some tables in the production system use delete to delete some rows and the space is not released.
Cause: similar to the high-water line production principle of Oracle
Solution:

Method 1:

Execute the optimize table name;

Note:
1. optimize table only applies to MyISAM, BDB, and InnoDB tables;
2. optimize table will generate a lock, and it is recommended to execute it when the business is low;
3. For tables with frequent DDL operations, regularly execute OPTIMIZE TABLE

Method 2:

Write an SQL statement to create a new table, delete the old table, and rename the new table;

Old_tables create new_table;

Truncate table old_tables;
Rename new_tables to old_tables.

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.