Home > database >  Azure Postgres Single server version upgrade
Azure Postgres Single server version upgrade

Time:05-13

Azure Postgres Single server version is 11. Is it possible to upgrade it to 13 version using dump and restore as mentioned here:

enter image description here

Choose the right approach based on your database configuration and it should be done without any issue.

To upgrade using pg_dump and pg_restore, you can refer Migrate your PostgreSQL database by using dump and restore.

CodePudding user response:

It is not possible. In the document, prerequisites states:

A source PostgreSQL database server running a lower version of the engine that you want to upgrade. A target PostgreSQL database server with the desired major version Azure Database for PostgreSQL server - Single Server or Azure Database for PostgreSQL - Flexible Server.

The question asks about upgrading target.

  • Related