Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | 51CTO学院 | CSDN程序员研修院 | OSChina 博客 | 腾讯云社区 | 阿里云栖社区 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏多维度架构

71.10. ERROR 1114 (HY000): The table 'your_table' is full

出现这个错误一般是 tmp_table_size 设置小于 max_heap_table_size 造成的。

show variables like '%table_size%';

解决方法,将 tmp_table_size 设置等于 max_heap_table_size

		
mysql> show variables like '%table_size%';
+---------------------+----------+
| Variable_name       | Value    |
+---------------------+----------+
| max_heap_table_size | 16777216 |
| tmp_table_size      | 16777216 |
+---------------------+----------+
2 rows in set (0.00 sec)