[MySQL] Memory allocation error: 1038 Out of sort memory, consider increasing server sort buffer size 에러
·
📁DB/🐬 MySQL
mysql에 할당된 sort_buffer_size가 적어서 발생한 오류이다. sort_buffer_size를 더 높게 할당해주면 해결된다.#mysql 접속mysql -u root -p #sort buffer size 확인show GLOBAL variables like "sort_buffer_size";#sort buffer size 설정SET GLOBAL sort_buffer_size = 256000000;