Importing larger sql files into MySQL

前端 未结 14 2207
感情败类
感情败类 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:18

    my.ini

    max_allowed_packet = 800M
    read_buffer_size = 2014K
    

    PHP.ini

    max_input_time = 20000
    memory_limit = 128M
    post_max_size=128M
    

提交回复
热议问题