Skip to content

Commit 68bdfd9

Browse files
Merge pull request #232322 from sunilagarwal/docs-editor/how-to-migrate-using-export-an-1679964006
Update how-to-migrate-using-export-and-import.md
2 parents 4d9f1e9 + 9c43987 commit 68bdfd9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/postgresql/migrate/how-to-migrate-using-export-and-import.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ ms.author: alkuchar
88
author: AwdotiaRomanowna
99
ms.date: 09/22/2020
1010
---
11+
1112
# Migrate your PostgreSQL database using export and import
1213

1314
[!INCLUDE[applies-to-postgres-single-flexible-server](../includes/applies-to-postgresql-single-flexible-server.md)]
1415

15-
You can use [pg_dump](https://www.postgresql.org/docs/current/static/app-pgdump.html) to extract a PostgreSQL database into a script file and [psql](https://www.postgresql.org/docs/current/static/app-psql.html) to import the data into the target database from that file.
16+
You can use [pg_dump](https://www.postgresql.org/docs/current/static/app-pgdump.html) to extract a PostgreSQL database into a script file and [psql](https://www.postgresql.org/docs/current/static/app-psql.html) to import the data into the target database from that file. If you want to migrate all the databases, you can use [pg_dumpall](https://www.postgresql.org/docs/current/app-pg-dumpall.html) to dump all the databases into one script file.
1617

1718
## Prerequisites
1819
To step through this how-to guide, you need:
@@ -53,6 +54,9 @@ psql --file=testdb.sql --host=mydemoserver.database.windows.net --port=5432 --us
5354

5455

5556

57+
58+
5659
## Next steps
5760
- To migrate a PostgreSQL database using dump and restore, see [Migrate your PostgreSQL database using dump and restore](how-to-migrate-using-dump-and-restore.md).
5861
- For more information about migrating databases to Azure Database for PostgreSQL, see the [Database Migration Guide](/data-migration/).
62+

0 commit comments

Comments
 (0)