I want to restore a postgreSQL backup from version 9.1 (used locally) to an earlier version: 8.1 (on the server)
Can I do this without upgrading the server?
I've tried using pg_dump to create a SQL dump.
When I try to restore it, I get an error message: ERROR: parameter "standard_conforming_strings" cannot be changed
and ERROR: syntax error at or near "(" at character 365 LINE 17: geom900913 geometry(MultiPolygon,900913),
I have tried setting standard_conforming_strings to off in the 9.1 postgres.conf, but I still get this message.
Did postgres 9 change the configuration for geometry columns?