首页 > 代码库 > mysql 内存表

mysql 内存表

show variables like ‘max_%‘;

 

max_heap_table_size16777216
  
max_tmp_tables32
  

show variables like ‘tmp_%‘;

tmp_table_size1048576000

 

 set global max_heap_table_size=1048576000

set global tmp_table_size=1048576000

mysql 内存表