Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2809319
  • 博文数量: 587
  • 博客积分: 6356
  • 博客等级: 准将
  • 技术积分: 6410
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-23 10:54
个人简介

器量大者,福泽必厚

文章分类

全部博文(587)

文章存档

2019年(3)

2018年(1)

2017年(29)

2016年(39)

2015年(66)

2014年(117)

2013年(136)

2012年(58)

2011年(34)

2010年(50)

2009年(38)

2008年(16)

分类: LINUX

2011-09-05 16:53:59

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) |
给主人留下些什么吧!~~