mysql db dump restore max file size issue

Solutions on MaxInterview for mysql db dump restore max file size issue by the best coders in the world

showing results for - "mysql db dump restore max file size issue"
Filippo
07 Jun 2019
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
similar questions
queries leading to this page
mysql db dump restore max file size issue