Answers for "ERROR 2020 (HY000) at line 1: Got packet bigger than 'max_allowed_packet' bytes mysql"

1

Error:Got a packet bigger than 'max_allowed_packet' bytes

run this command in your mysql console.

set global net_buffer_length=1000000; 
set global max_allowed_packet=1000000000;
Posted by: Guest on June-18-2021

Code answers related to "ERROR 2020 (HY000) at line 1: Got packet bigger than 'max_allowed_packet' bytes mysql"

Browse Popular Code Answers by Language