There’s a max_heap_table_size limit to 16 mb so how can i change this value and where?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I am pretty sure the max_heap_table_size is set to around 16MB by default. So I would first check what it is set to by running a query:
select @@max_heap_table_size;And then you can run a query to set it higher:
set @@max_heap_table_size=NUMBER_OF_BYTES;