MySQL 出現 The table is full 的解決方案

來源:互聯網
上載者:User

MySQL 出現 The table is full 只有一個原因,對應的表資料容量達到系統上限。具體限制請查看官方手冊:http://dev.mysql.com/doc/refman/5.1/zh/introduction.html#table-size。你可以使用SHOW TABLE STATUS語句查看該表的相關資訊。

解決方案1:
執行ALTER TABLE tbl_name MAX_ROWS=1000000000;

解決方案2:
修改Mysql的設定檔/etc/my.cnf,在[mysqld]下添加/修改兩行(下面的值僅供參考,請根據實際情況酌情處理):
tmp_table_size = 256M // 暫存資料表大小
max_heap_table_size = 256M // 記憶體表大小

系統預設是16M,別忘記重新啟動mysql。


本文出自 “Neure” 部落格,請務必保留此出處http://neure.blog.51cto.com/3029236/1294062

相關文章

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.