How to import large sql file in phpmyadmin

前端 未结 20 1439
一向
一向 2020-11-29 17:04

I want to import a sql file of approx 12 mb. But its causing problem while loading. Is there any way to upload it without splitting the sql file ?

20条回答
  •  一向
    一向 (楼主)
    2020-11-29 18:02

    Try to import it from mysql console as per the taste of your OS.

    mysql -u {DB-USER-NAME} -p {DB-NAME} < {db.file.sql path}
    

    or if it's on a remote server use the -h flag to specify the host.

    mysql -u {DB-USER-NAME} -h {MySQL-SERVER-HOST-NAME} -p {DB-NAME} < {db.file.sql path}
    

提交回复
热议问题