Restoring PostgresSQL database from backup

I am trying to get a site up and running and have PostgreSQL database source .asp and .backup files.

I keep getting errors when trying to restore a Postgres backup: "Process is returning return code 0". I have already created a new db and added tables via pgadmin GUI, I get an error when I right click on an empty table and choose restore.

Anyone with Postgres experience can help, or point me in the direction of some specific documentation?

+3


source to share


1 answer


Use the client application pg_restore

to recover from an archive created pg_dump

in one of the formats other than normal.



+3


source







All Articles