I can't import a .sql backup in PhpMyAdmin because the file is too big, what can I do?

963 views Asked by At

I am trying to upload a database backup into my local MySql database using PhpMyAdmin

When I try to import my .sql backup file it go into error and it say to me that maybe the file is too big (31 mb)

Reading the documentation it seems to me that I can change some configuration file to change the size value but I can't find this configuration file and this value

Someone can help me?

Tnx

Andrea

2

There are 2 answers

0
Girish On

You should import from command line, here you will not need to change configuration

Linux Shell

shell> mysqldump db_name < backup-file.sql

Windows CMD

mysql.exe -p -u[user] [database] < backup-file.sql

And for phpMyAdmin import file size Link

0
Isaac Bennetch On

The phpMyAdmin manual has several alternative suggestions.

These include:

  • Using the $cfg['UploadDir'] feature to upload the file to the web server, which can help overcome upload or timeout limitations,
  • Using a third-party utility especially designed for this purpose, such as BigDump, or
  • Using the MySQL command line interface, when shell access is available.