Database
Database Help Center
-
How do I restore a MySQL database?
(0)
To restore a MySQL database please follow the below steps: -
I would like to dump the Table Structure for my MySQL Database, but none of the data.
(0)
The command line option from SSH is: mysql -d -p database_name > file.sql. Where 'database_name' is the name of your database, and 'file.sql' is the name of the file you would like to write the table structure to. -
I can't log into MySQL from a remote computer using a MySQL admin tool.
(0)
To add yourself to the whitelist so that you can connect to mysql remotely using admin tools such as phpMyAdmin, Navicat, MySQLFront or MySQL-Admin follow the below steps: -
What are the Basic Connection Settings for MySQL?
(0)
There are two different ways to connect to a MySQL database: -
How do I import a MySQL database?
(0)
To import a database follow the below steps:
I have a backup of my database that I need to import/transfer to my new account.