Migrate from Digital Ocean Postgres to Neon
Learn how to migrate your Postgres database from Digital Ocean to Neon using pg_dump and pg_restore
This guide describes how to migrate a Postgres database from Digital Ocean to Neon using the pg_dump
and pg_restore
utilities, which are part of the Postgres client toolset. pg_dump
works by dumping both the schema and data in a custom format that is compressed and suitable for input into pg_restore
to rebuild the database.
Prerequisites
-
A Digital Ocean Postgres database containing the data you want to migrate.
-
A Neon project to move the data to. For detailed information on creating a Neon project, see Create a project. Make sure to create a project with the same Postgres version as your Digital Ocean deployment.
-
pg_dump
andpg_restore
utilities installed on your local machine. These typically come with a Postgres installation.We recommended that you use the
pg_dump
andpg_restore
programs from the latest version of Postgres, to take advantage of enhancements that might have been made in these programs. To check the version ofpg_dump
orpg_restore
, use the-V
option. For example:pg_dump -V
. -
Review our guide on Importing data from Postgres for more comprehensive information on using
pg_dump
andpg_restore
.
Prepare your Digital Ocean database
This section describes how to prepare your Digital Ocean database for exporting data.
To illustrate the migration workflow, we populate the Digital Ocean database with the LEGO dataset. This database contains information about LEGO sets, parts, and themes.
Retrieve Digital Ocean connection details
- Log in to your Digital Ocean account and navigate to the Databases section.
- Select your Postgres database.
- In the Connection Details section under the Overview tab, you'll find the following information:
- Host
- Port
- Database name
- Username
- Password (you may need to reset it if you don't have it)
You'll need these details to construct the connection string for pg_dump
. Alternatively, you can toggle to the Connection string
option to get the postgresql://
connection string, which can be used directly with postgres CLI tools.
Export data with pg_dump
Now that you have the Digital Ocean connection details, you can export your data using pg_dump
:
Replace [username]
, [password]
, [host]
, [port]
, and [database]
with your Digital Ocean connection details.
This command includes these arguments:
-Fc
: Outputs the dump in custom format, which is compressed and suitable for input intopg_restore
.-v
: Runspg_dump
in verbose mode, allowing you to monitor the dump operation.-d
: Specifies the connection string for your Digital Ocean database.-f
: Specifies the output file name.
If the command was successful, you'll see output similar to the following:
important
Avoid using pg_dump
over a pooled connection string (see PgBouncer issues 452 & 976 for details). Use an unpooled connection string instead.
Prepare your Neon destination database
This section describes how to prepare your destination Neon Postgres database to receive the imported data.
Create the Neon database
Each Neon project comes with a default database named neondb
. To maintain consistency with your Digital Ocean setup, create a new database with the same name.
-
Connect to your Neon project using the Neon SQL Editor or a Postgres client like
psql
. -
Create a new database. For example, if your Digital Ocean database was named
lego
, run:
For more information, see Create a database.
Retrieve Neon connection details
-
In the Neon Console, go to your project dashboard.
-
Find the Connection Details widget.
-
Copy the connection string. It will look similar to this:
Restore data to Neon with pg_restore
Now you can restore your data to the Neon database using pg_restore
:
Replace <neon-connection-string>
with your Neon connection details.
This command includes these arguments:
-d
: Specifies the connection string for your Neon database.-v
: Runspg_restore
in verbose mode.--no-owner
: Skips setting the ownership of objects as in the original database.--no-acl
: Skips restoring access privileges for objects as in the original database.
We recommend using the --no-owner
and --no-acl
options to skip restoring these settings, as they may not be compatible between Digital Ocean and Neon. After migrating the data, review and configure the appropriate roles and privileges for all objects, as needed.
If the command was successful, you'll see output similar to the following:
Verify the migration
After the restore process completes, you should verify that your data has been successfully migrated:
-
Connect to your Neon database using the Neon SQL Editor or
psql
. -
Run some application queries to check your data. For example, if you're using the
LEGO
database, you can run the following: -
Compare the results with those from running the same queries on your Digital Ocean database to ensure data integrity.
Clean up
After successfully migrating and verifying your data on Neon, you can update your application's connection strings to point to your new Neon database. We recommend that you keep your Digital Ocean database dump file (digitalocean_dump.bak
) as a backup until you've verified that the migration was successful.
Other migration options
While this guide focuses on using pg_dump
and pg_restore
, there are other migration options available:
-
Logical replication
For larger databases or scenarios where you need to minimize downtime, you might consider using logical replication. See our guide on Logical replication for more information.
-
CSV export/import
For smaller datasets or specific tables, you might consider exporting to CSV from Digital Ocean and then importing to Neon. See Import data from CSV for more details on this method.
Reference
For more information on the Postgres utilities used in this guide, refer to the following documentation:
Need help?
Join our Discord Server to ask questions or see what others are doing with Neon. Users on paid plans can open a support ticket from the console. For more details, see Getting Support.