I have a website with a Postgis database. I access to it with phpPgAdmin with postgreSQL 9.6. I want to export my database to keep a local backup.
I exported it like that:
Then I want to import it in PgAdmin 4 v2.1, with PostgreSQL 10. In my SQL file I changed the owner name from observatoire-vienne
to postgres
. I created an empty spatial database.
I selected the query tool and ran the query with my sql file.
The error message is:
ERROR: ERREUR: la fonction public._st_dumppoints(public.geometry, integer[]) n'existe pas
Which means:
Error: the function public._st_dumppoints(public.geometry, integer[]) does not exist
I can’t find a similar problem in previous posts.
My question is: Is it due to Postgres versions? Does someone have the solution?