28

I exported a postgres db from pgAdmin in a plain format because I wanted to search the whole db text. I then tried to restore the database back but it gives an error saying that the archive file is not valid archive file. How do I restore the db back if it can be restored?

asked Feb 21, 2012 at 11:06

1 Answer 1

27

run:

psql -U your_user_name your_db_name < your_dump_file
answered Feb 21, 2012 at 11:07
7
  • I am on windows 7. Can I do this on windows 7? Commented Feb 21, 2012 at 11:09
  • it should, if psql frontend is included in the postgresql package. Try to fire up a terminal, then cd to postgresql bin directory and try to run psql Commented Feb 21, 2012 at 11:13
  • I tried it now. It didnt work. There is psql.bat file in the postgres bin directory. I am using postgres 8.3 Commented Feb 21, 2012 at 11:17
  • what do you mean with 'it didnt work'? if there is psql.bat however, try with that, it should run psql. look here for help archives.postgresql.org/pgsql-admin/2006-12/msg00091.php Commented Feb 21, 2012 at 11:22
  • Sorry I meant there is no psql.bat file in the bin directory Commented Feb 21, 2012 at 11:27

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.