0

I checked that table is having storage engine as Memory, how to solve it and why? I need run the truncate command on the table?

Your Common Sense
  • 156,878
  • 40
  • 214
  • 345

1 Answers1

1

Solved.

MEMORY tables are never converted to disk tables. To ensure that you don’t accidentally do anything foolish, you can set the max_heap_table_size system variable to impose a maximum size on MEMORY tables. For individual tables, you can also specify a MAX_ROWS table option in the CREATE TABLE statement