Results 1 to 3 of 3
Hello
We want to backup our postgreSQL database.
But if we use pg_dump we've got problems with the restore when we work with different versions.
the problem is cause by ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 03-14-2013 #1Just Joined!
- Join Date
- Mar 2013
- Location
- Belgium
- Posts
- 20
backup postgreSQL - postGIS
Hello
We want to backup our postgreSQL database.
But if we use pg_dump we've got problems with the restore when we work with different versions.
the problem is cause by the functions the don't exist anymore or change in the other version.
On the internet i found something like pg_dump without functions or a special perl script to filter these out.
Do some of you have some experience with this? Because i can't test these methods for the moment?
Or maybe someone with an other solution for this problem?
Thank you
- 03-15-2013 #2
I would have thought the ideal solution would be to ensure that your restore machine is running the same versions as the machine where the backup is made.
This means the same version of postgres, and the same version of whatever program you are using to manipulate the data on the frontend.
pg_dump is a standard postgres command. I don't know of any special without-functions dump. The functions surely exist in the frontend, not the backend. The postgres dump file is just columns and rows of data, no functions.
- 03-15-2013 #3Linux User
- Join Date
- Jan 2005
- Location
- Saint Paul, MN
- Posts
- 398
Look at the "--format=plain" option to pg_dump which writes simple SQL


Reply With Quote
