Import large .sql file into MySQL

后端 未结 2 775
难免孤独
难免孤独 2021-02-05 18:31

I have been given a VERY large mysql backup file. It is ~630 MB... I guess someone thought it was a good idea to store images in a database... Anyway, I need to

2条回答
  •  既然无缘
    2021-02-05 18:33

    I had a 3.5G dump file, I tried to import it with PhpMyAdmin and MySql workbench but without success. So I just used the console to run it

    # mysql -u user_name -pYour_passwd your_db < your_dump.sql
    

    and it works great

提交回复
热议问题