Importing a MySQL Database:
- Log into cPanel.
- Open phpMyAdmin by clicking the phpMyAdmin icon.
- Select the database in the left menu that you will be working with.
- Click Import in the top menu.
- Under File to Import, click Browse and select the backup file you previously created (it will be either a .sql .zip or .tar.gz file).
- Click Go at the bottom right.
When the database has been imported successfully, you should see a message at the top of the page similar to: Import has been successfully finished, ## queries executed.
Exporting a MySQL Database:
1. Log into cPanel.
2. Open phpMyAdmin by clicking the phpMyAdmin icon.
3. Select the database in the left menu that you will be working with.
- Click Export in the top menu.
- Under the Export heading, ensure that all of your tables are selected and that the SQL option is selected.
- Under the Options heading, ensure that you have selected, Add DROP TABLE / VIEW / PROCEDURE / FUNCTION.
- Ensure the Save as file option (towards bottom of page) is checked. If you think you database is quite large, choose either zipped or gzipped to compress the file so it will be easier to download.
- Click Go.
- You will be prompted to either open or save the file. Please select the option to save the file and then save the file somewhere you’ll remember (such as directly on your desktop).
Troubleshooting:
#1044 - Access is denied
If you get the following error when importing a a database through PhpMyAdmin, you will need to edit the sql file you’re trying to import.CREATE SCHEMA IF NOT EXISTS DataBaseName DEFAULT CHARACTER SET utf8 COLLATE utf8\_general\_ci;MySQL said: Documentation#1044 - Access denied for user 'userna5'@'localhost' to database 'DatabaseName'
PhpMyAdmin does not allow you to CREATE databases due to security reasons. In order to get your SQL file to load you will need to remove the CREATE SCHEMA line at the beginning of your code.

