When I tried to do
set GLOBAL group_concat_max_len = 4294967295
in cpanel, I get the error
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation
When I tried to do
set GLOBAL group_concat_max_len = 4294967295
in cpanel, I get the error
ERROR 1227 (42000): Access denied; you need (at least one of) the SUPER privilege(s) for this operation
The command to give the permission (on your database) should be something like this: GRANT SUPER ON . TO user@'localhost' IDENTIFIED BY 'passwordName';
But like @RiggsFolly and @Akina said, check the need in doing this.