Big Database import

Hello,

I am trying to import a 500MB database (65MB zipped) from phpmyadmin but i keep getting “Incorrect format parameter”.
I thought it was not a matter of size, but i think it has to do with it.
I increased the php values to 1024MB but when i enter phpmyadmin-import menu i get a warning for 2MB mas uload file size.
Any help ?

It is always recommended to restore large MySQL dumps via command line.

1 Like

You can also use Bigdump - BigDump: Staggered MySQL Dump Importer

Very very handy script, i have imported DBes as big as 2GB!

2 Likes

I imported 800 MB database using: unzip -p ‘database.sql.zip’ | mysql -u username -p database

1 Like

This can be done easily through the command line.

Also you can import large files through wget function by using server resources.

Step 1: wget yourdomain.com/webdb.sql

Step 2: mysql -u username -p databasename < webdb.sql

Step 3 : Enter the mysql Database Password

Done

1 Like

For such a big database please use ssh terminal so you do not loss any data.

For phpadmin you need adjust upload limit on PHP 7.3

@Mikael
Thanks for the Bigdump
It was grat

how to use it?