1010Importing a MySQL File with Command Line

Working with XAMPP and and phpMyAdmin makes dealing with databases more visual, but importing large db dumb files can fail/take a long time.

Importing from the command line is faster and more stable.

Use the XAMPP mysql, if there is not a global mysql

cd /Applications/XAMPP/xamppfiles/bin 

Import on Local Server

mysql -u username -p db_name < ~/path/to/db/file.sql

Import with specified Server

mysql -u username -p -h hostname db_name  < ~/path/to/db/file.sql

Checking Status of MySQL Server

mysqladmin -u username -p -h hostname status
  • -p asks for the password on execution
  • Importing a ca. 300MB file takes ca. 5 seconds.
  • Make sure the DB "db_name" already exists.

Troubleshooting

I exported all the DB from one installatino as one, big localhost.sql and then tried to import it in another one. That creates the following error:

ERROR 2006 (HY000) at line 127571: MySQL server has gone away

Some DBs have been imported, but not all.

Workaround: Export/Import DBs individually.

980Exporting MySQL Databases with mysqldump

IMPORTANT: No space between -p and 'password'

  • -p prompts for the password
  • --verbose

Export a single Database

mysqldump -u'username' -p db_name > db_name.sql

Export all Databases

mysqldump -u'username' -p --all-databases > all.sql

Export a DB from Host

`mysqldump --verbose -h myhost -u'username' -p db_name > db_name.sqll

Export all Databases with Date

mysqldump -u'username' -p --all-databases > /path/all_date +\%Y\%m\%d_\%H\%M\%s.sql

`