Importing larger sql files into MySQL

前端 未结 14 2204
感情败类
感情败类 2020-12-12 10:45

I have a 400MB large sql backup file. I\'m trying to import that file into MySQL database using WAMP->import, but the import was unsuccessful due to many reasons such as upl

14条回答
  •  攒了一身酷
    2020-12-12 11:09

    3 things you have to do, if you are doing it locally:

    in php.ini or php.cfg of your php installation

    post_max_size=500M
    
    upload_max_filesize=500M
    
    memory_limit=900M
    

    or set other values. Restart Apache.

    OR

    Use php big dump tool its best ever i have seen. its free and opensource

    http://www.ozerov.de/bigdump/

提交回复
热议问题