Mysql还原时提示“The table 'TABLENAME' is full”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql还原时提示“The table 'TABLENAME' is full”相关的知识,希望对你有一定的参考价值。

解决:show create table TABLENAME;得知engine类型为memory;

    

    vim /etc/mysql/my.cf在[mysqld]下添加/修改两行(如果还不行的话可以增大数值):

    tmp_table_size = 256M

    max_heap_table_size = 256M

    

    service mysql restart


原因:因为表的engine类型为memory,其中mysql的memory engine中有max_heap_table_size的限制,数据稍多就满了。


参考:http://www.cnblogs.com/ccdc/p/4119465.html

    http://blog.csdn.net/kevon_sun/article/details/7967728


本文出自 “LinuxTips” 博客,请务必保留此出处http://linuxtips.blog.51cto.com/11213600/1773930

以上是关于Mysql还原时提示“The table 'TABLENAME' is full”的主要内容,如果未能解决你的问题,请参考以下文章

mysql 解决 ERROR 1114 (HY000): The table 'XXX' is full

SQLSTATE[HY000]: General error: 1114 The table '/home/mysql/data3007/tmp/#sq

解决the table '' is full

mysql 备份与还原

[ERR] 1114 - The table 'xxx' is full

原创:mysql5 还原至mysql 8.0.11数据库链接配置提示错误改动备注