Non-programmer using Sequel Ace, how to resolve “Out of sort memory, consider increasing server sort buffer size” error?

dba.stackexchange https://dba.stackexchange.com/questions/273723

  •  06-03-2021
  •  | 
  •  

Question

I don't know MySQL but I wanted to glance through some data in a table. I imported the database into Sequel Ace (MacOS) and had no trouble browsing through the tables, but when attempting to sort one column in a larger table I received an "Out of sort memory, consider increasing server sort buffer size" error.

How do I make that happen?

I have MySQL installed and running.

Was it helpful?

Solution

see https://forums.mysql.com/read.php?11,366143,376017#msg-376017

how to create a my.cnf file and add

[mysqld]
sort_buffer_size = 1M

And then increase it when it still makes troubles

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top