mysql出现”the table is full”的问题,一般有两个原因:

一,硬盘空间满了,清理硬盘即可(先避免硬盘空间满的问题)

不要被mysql的安装目录所欺骗, 最好去看看数据存放目录是哪
在my.ini  搜索 datadir
看其指向的数据存放目录。

二 .

(官方说明)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”.

ERROR 1114 (HY000) at line 1720: The table 'XXXX' is full

于是就修改Mysql的配置文件my.ini,在[mysqld]下添加/修改两行:

tmp_table_size = 512M
max_heap_table_size = 512

系统默认是16M,修改完后重启mysql

Logo

更多推荐