Solution for MySQL to show The table is full

Source: Internet
Author: User

There is only one reason for MySQL to show that The table is full. The corresponding table data capacity has reached The system limit. For specific restrictions, see the official manual: http://dev.mysql.com/doc/refman/5.1/zh/introduction.html?table-size. You can use the show table status statement to view information about the TABLE.

Solution 1:
Execute alter table tbl_name MAX_ROWS = 1000000000;

Solution 2:
Modify the Mysql configuration file/etc/my. cnf and add/modify two rows under [mysqld] (the following values are for reference only. Please handle them as appropriate ):
Tmp_table_size = 256 M // temporary table size
Max_heap_table_size = 256 M // memory table size

The default value is 16 Mb. Do not forget to restart mysql.


This article is from the Neure blog, please be sure to keep this source http://neure.blog.51cto.com/3029236/1294062

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.