Importing and exporting PostgreSQL databases
Learn how to import and export a PostgreSQL database with this guide, which can help transfer a database from one hosting account to another, back up a database and more.
This article describes how to import and export a PostgreSQL database. You can import and export databases for a variety of scenarios, including:
-
Transferring a database from one web hosting account or provider to another.
-
Importing a third-party database.
-
Backing up a database.
Exporting a PostgreSQL database
You can export a PostgreSQL database to a file by using the pg_dump command line program, or you can use phpPgAdmin.
Method #1: Use the pg_dump program
To export a PostgreSQL database using the pg_dump program, follow these steps:
-
Access the command line on the computer where the database is stored. For example, if the database is on another web hosting account or with another web hosting provider, log in to the account using SSH. If you have physical access to the computer, you can open a DOS or terminal window to access the command line.
-
Type the following command, and then press Enter. Replace dbusername with a username that has permissions to access the database, and replace dbname with the name of the database that you want to export:
pg_dump -U dbusername dbname > dbexport.pgsql
Note
This article uses the dbexport.pgsql filename for the exported database, but you can name the file anything you want.
-
Type your hosting.com account password at the Password prompt.
-
The dbexport.pgsql file now contains all of the data for the dbname database. If the dbexport.pgsql file is on a remote computer, download the file to your local computer.
Note
You may receive the following error messages when you try to export a database:
pg_dump: SQL command failed pg_dump: Error message from server: ERROR: permission denied for schema topology pg_dump: The command was: LOCK TABLE topology.topology IN ACCESS SHARE MODE
These errors occur because some server database templates include PostGIS with restricted access permissions. To export a PostgreSQL database without this data, type the following command instead of the command listed in step 2:
pg_dump -U dbusername dbname -N topology -T spatial_ref_sys > dbexport.pgsql
Method #2: Use phpPgAdmin
To export a PostgreSQL database using phpPgAdmin, follow these steps:
-
Log in to cPanel.
Note
If you do not know how to log in to your cPanel account, please see this article.
-
Open phpPgAdmin:
-
If you are using the Jupiter theme, on the Tools page, in the Databases section, click phpPgAdmin:
-
If you are using the Paper Lantern theme, in the DATABASES section of the cPanel home page, click phpPgAdmin:
-
-
The phpPgAdmin administration page appears in a new window. In the left pane of the phpPgAdmin window, expand Servers, expand PostgreSQL, and then click the name of the database that you want to export.
-
On the top menu bar, click Export.
-
Under Format, click Structure and data.
-
Under Options, in the Format list box, select SQL.
-
Under Options, click Download.
-
Click Export.
-
In the file dialog, select a location to save the file, and then click Save.
Creating a new PostgreSQL database and assigning a user
Before you can import the database, you must create a new database in cPanel and assign a user to it. To do this, follow these steps:
-
Log in to cPanel.
Note
If you do not know how to log in to your cPanel account, please see this article.
-
Open the PostgreSQL Databases tool:
-
If you are using the Jupiter theme, on the Tools page, in the Databases section, click PostgreSQL Databases:
-
If you are using the Paper Lantern theme, in the DATABASES section of the cPanel home page, click PostgreSQL Databases:
-
-
Under Create New Database, in the Database Name text box, type the name of the database.
Note
You cannot use capital letters in a PostgreSQL database name.
-
Click Create Database.
-
When the database is created, click Go Back.
-
Under Add User to Database, in the User list box, select the user that you want to add.
-
In the Database list box, select the new database.
-
Click Submit.
Importing a PostgreSQL database
After you have created a new database in cPanel, you can import the database's contents by using the psql command line program, or you can phpPgAdmin.
Important
You should import all PostgreSQL data as the primary PostgreSQL user (that is, by using your domain username). If you import PostgreSQL data as a regular user, you will be unable to see or manipulate the data properly using phpPgAdmin. After you have imported the data as the primary PostgreSQL user, you can grant a regular user access to the data. Then you do not have to use the primary domain username and password in scripts that access the database.
Method #1: Use the psql program
To import a PostgreSQL database using the psql program, follow these steps:
-
Transfer the dbexport.pgsql file to your hosting.com account using SCP, SFTP, or FTP.
-
Log in to your hosting.com account using SSH.
-
Type the following command, and then press Enter. Replace username with your username and replace dbname with the name of the database that you want to import the data into:
psql -U username dbname < dbexport.pgsql
-
The dbname database should now contain the data that is in the dbexport.pgsql file.
Method #2: Use phpPgAdmin
To import a PostgreSQL database using phpPgAdmin, follow these steps:
-
Log in to cPanel.
Note
If you do not know how to log in to your cPanel account, please see this article.
-
Open phpPgAdmin:
-
If you are using the Jupiter theme, on the Tools page, in the Databases section, click phpPgAdmin:
-
If you are using the Paper Lantern theme, in the DATABASES section of the cPanel home page, click phpPgAdmin:
-
-
The phpPgAdmin administration page appears in a new window. In the left pane of the phpPgAdmin window, expand Servers, expand PostgreSQL, and then click the name of the database that you want to import the data into.
-
On the top menu bar, click SQL.
Note
The SQL link is located between the Schemas and Find links.
-
Click Choose File.
-
In the file dialog, select where the import file is located, and then click Open.
-
Click Execute. phpPgAdmin imports the data from the file into the database.
More Information
-
To view the online documentation for psql in PostgreSQL 9.5, please visit https://www.postgresql.org/docs/9.5/app-psql.html.
-
To view the online documentation for psql in PostgreSQL 9.6, please visit https://www.postgresql.org/docs/9.6/app-psql.html.
-
To view the online documentation for pg_dump in PostgreSQL 9.5, please visit https://www.postgresql.org/docs/9.5/app-pgdump.html.
-
To view the online documentation for pg_dump in PostgreSQL 9.6, please visit https://www.postgresql.org/docs/9.6/app-pgdump.html.
Related Articles
Updated 3 days ago