mysql error:the table is full
mysql error number:1114
见附件!
解决方法:
根据附件中的提示,去相应的数据库中查看表,check table ***提示不支持这个类型的,于是show create table ***
发现该表是一个heap 类型的表(不是myisam、innodb)
mysql手册:
You are using the MEMORY (HEAP) storage engine; in this case you need to increase the value of the max_heap_table_size system variable. See Section 5.1.3, “Server System Variables”.
于是就修改Mysql的配置文件/etc/my.cnf,在[mysqld]下添加/修改两行:
tmp_table_size = 256M
max_heap_table_size = 256M
务必要重启mysql才生效!
阅读(1996) | 评论(0) | 转发(0) |