简体   繁体   中英

How to open db.dump from Ubuntu on Windows 7

Is there a way how to open a database .dump file from Ubuntu on Windows 7 in PostgreSQL?
I have created an empty database in PgAdmin 3 and then tried to restore it with the db.dump but it did not work.

If you created the file using pg_dump or pg_dumpall, then you can restore it by using the

psql -f <file name> 

if it's from pg_dumpall or

psql -f <file name> <database name> 

if it's from pg_dump.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM