无法在MySql表中插入超过33138行

时间:2014-09-23 13:13:20

标签: mysql row

我在内存中的MySql中创建了表,但在插入33138之后会抛出异常“表已满”

语法 - create table Employee(name varchar(500)null)max_rows = 1000000 ENGINE = Memory;

我还改变了表格最大行限制,但问题仍然存在。 句法 - alter table employee max_rows = 1000000,avg_row_length = 50;

enter image description here

1 个答案:

答案 0 :(得分:0)

I have created table in MySql in Memorythrows an exception "table is full"

很可能你的内存不足,如果机器上有内存,你已经达到mysql内存限制

MySQL maximum memory usage有更多信息