Migrate from Supabase to Neon Postgres
Learn how to migrate your database from Supabase to Neon Postgres using pg_dump and pg_restore
This guide describes how to migrate a database from Supabase to Neon Postgres.
We use 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 Supabase project 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 Supabase 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 Migrating data from Postgres for more comprehensive information on using
pg_dump
andpg_restore
.
Prepare your Supabase database
This section describes how to prepare your Supabase database for exporting data.
To illustrate the migration workflow, we use the LEGO Database. This database contains information about LEGO sets, parts, and themes.
Retrieve Supabase connection details
- Log in to your Supabase account and navigate to your project dashboard.
- In the left sidebar, click on Project Settings.
- Select Database, where you will find the below settings under the Connection Parameters section:
- Host
- Database name
- Port
- User
- Password [Not visible in the dashboard]
You'll need these details to construct your connection string for pg_dump
.
Export data with pg_dump
Now that you have your Supabase connection details, you can export your data using pg_dump
:
Replace [user]
, [password]
, [supabase_host]
, [port]
, and [database]
with your Supabase 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 Supabase database.-f
: Specifies the output file name.--schema=public
: Specifies the schema to dump. In this case, we only want to back up tables in thepublic
schema.
Supabase projects may also store data corresponding to authentication, storage and other services under different schemas. If necessary, you can specify additional schemas to dump by adding the --schema
option multiple times.
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
To maintain consistency with your Supabase setup, you can create a new database in Neon with the same database name you used in Supabase.
-
Connect to your Neon project using the Neon SQL Editor or a Postgres client like psql.
-
Create a new database. For example, if your Supabase 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 [user]
, [password]
, [neon_hostname]
, and [dbname]
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.
A Supabase database has ownership and access control tied to the authentication system. We recommend that you use the --no-owner
and --no-acl
options to skip restoring these settings. After migrating the data, review and configure the appropriate roles and privileges for all objects, as needed. For more information, refer to the section on Database object ownership considerations.
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 Supabase 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 Supabase dump file (supabase_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 Supabase 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.