MySQL Import and Export
If you are using assistive technology and are unable to read any part of the HostMonster website, or otherwise have difficulties using the HostMonster website, please call 866-573-HOST and our customer service team will assist you.
Skip to main content

HostMonster Web Hosting Help

MySQL Import and Export

Using SSH can be a superior way to manage the files and databases on your account. Using a simple command you can import or export a MySQL database into an existing database on your account. Please refer to our Article SSH Access if you do not currently have access.If you are looking for instructions for importing or exporting databases using phpMyAdmin, please see Import Databases with phpMyAdmin



In all of the examples below the -p will prompt for your account's password. and make sure your database name has your HostMonster username prefix with the _ (underscore) after it and the database name.

Exporting MySQL Data

This example shows you how to export a database. It is a good idea to export your data often as a backup.
  1. Using SSH, execute the following command:
    mysqldump -p -u username database_name > dbname.sql
  2. You will be prompted for a password, type in the password for the username and press Enter. Replace username, password and database_name with your MySQL username, password and database name.

The file dbname.sql now holds a backup of your database and is ready for download to your computer.

To export a single table from your database you would use the following command:

mysqldump -p --user=username database_name tableName > tableName.sql
Again you would need to replace the username, database and tableName with the correct information.

Once done the table specified would then be saved to your account as tableName.sql

Import A MySQL Database

The file must be in .sql format. It can not be compressed in a .zip or .tar.gz file.
  1. Start by uploading the .sql file onto the HostMonster server
  2. If you haven't already done so, create the MySQL database via the cpanel. Click Here for further instructions
  3. Using SSH, navigate to the directory where your .sql file is.
  4. Next run this command:
     mysql -p -u username database_name < file.sql 

To import a single table into an existing database you would use the following command:

mysql -u username -p -D database_name < tableName.sql

Knowledgebase Article 416,509 views bookmark tags: mysql phpmyadmin ssh


Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

How do I import a backup of my database (.sql file) using phpMyAdmin?
Knowledgebase Article 778,925 views tags: database mysql phpmyadmin

This article will instruct you how to import a database from the command line (SSH).
Knowledgebase Article 773,007 views tags: database mysql ssh

This article will instruct you how to export a database from the command line (SSH).
Knowledgebase Article 859,876 views tags: database mysql ssh

Related Help Content

How to export your database in phpMyAdmin..
Knowledgebase Article 256,254 views tags: database export myphpadmin

A repository of information on how you can manage your database by using the phpMyAdmin interface.
Knowledgebase Article 373,181 views tags: commands database mysql phpmyadmin

How to Restore your MySQL Database?
Knowledgebase Article 381,421 views tags: admin database mysql php phpmyadmin restore

A guide to duplicating a MySQL database using phpMyAdmin
Knowledgebase Article 239,581 views tags: databases mysql phpmyadmin

This article will walk you through the steps to copying and renaming a database with phpMyAdmin.
Knowledgebase Article 159,236 views tags: database phpmyadmin

A tutorial on how to perminately delete columns from your mySQL database using phpMyAdmin
Knowledgebase Article 186,283 views tags: Plesk cpanel databases mysql phpmyadmin

How to manually migrate a WordPress site, not using ManageWP.
Knowledgebase Article 439,910 views tags: export import migrate wordpress

How to repair and optimize your database using phpMyAdmin:
Knowledgebase Article 439,764 views tags: database mysql optimizing repairing slow speed

This site utilizes JavaScript to function correctly. Looks like it's disabled on your browser. Please enable it for your best experience.

For instructions on enabling JavaScript, click here