I have created table in MySql in Memory, but after inserting 33138 it throws an exception "table is full"
Syntax - create table Employee(name varchar(500) null) max_rows = 1000000 ENGINE=Memory;
I have also alter the table max row limit but problem still exits. Syntax - alter table employee max_rows = 1000000, avg_row_length=50;