1mysql -u root -p
2
3set global net_buffer_length=1000000; --Set network buffer length to a large byte number
4
5set global max_allowed_packet=1000000000; --Set maximum allowed packet size to a large byte number
6
7SET foreign_key_checks = 0; --Disable foreign key checking to avoid delays,errors and unwanted behaviour
8
9source file.sql --Import your sql dump file
10
11SET foreign_key_checks = 1; --Remember to enable foreign key checks when procedure is complete!
12