且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何将大的(14 GB)MySQL转储文件导入到新的MySQL数据库中?

更新时间:2023-01-21 16:05:02

我四处搜寻,只有这种解决方案对我有帮助:

I've searched around, and only this solution helped me:

mysql -u root -p

set global net_buffer_length=1000000; --Set network buffer length to a large byte number

set global max_allowed_packet=1000000000; --Set maximum allowed packet size to a large byte number

SET foreign_key_checks = 0; --Disable foreign key checking to avoid delays,errors and unwanted behaviour

source file.sql --Import your sql dump file

SET foreign_key_checks = 1; --Remember to enable foreign key checks when procedure is complete!

找到答案此处.