EDB schema dump with pg_dump - server version mismatch

93 Views Asked by At

I'd like to create a dump from an EDB 14 server schema. I installed postgresql 14 server locally. When I try to create the dump from pgAdmin I got this error:

pg_dump: error: server version: 14.7.0; pg_dump version: 14.7
pg_dump: error: aborting because of server version mismatch

What is the problem?

SOLUTION:

The pg_dump included with open source PostgreSQL 14.7 throws an error when run against an EDB Advanced Server, even if they have the same version number. Therefore, it is necessary to download the specific version of EDB Advanced Server from here and use the pg_dump module that comes with it.

0

There are 0 best solutions below