How to backup & Restore PostgreSQL database in Windows7?

橙三吉。 提交于 2019-12-05 00:49:08

问题


I am new to Postgres database. I have to get the backup from Production Server (pgAdmin Version is 9.2.4) & restore it on my local machine (I have pgAdmin Version 9.4). I tried to get backup by right clicking on database -> Backup to get the .backup file. Like shown in below image:

But when I try to restore the backup file, I get many errors.

I also want to know whether having different ports at both system can also create issues while restoring backups. As When I tried to restore backup of same system had no problems.


回答1:


To backup a database you can use pg_dump.exe:

  1. Open command line window
  2. Go to Postgres bin folder. For example:

    cd "C:\Program Files\PostgreSQL\9.6\bin"
    
  3. Enter the command to dump your database. For example:

    pg_dump.exe -U postgres -d MediaData -f D:\Backup\<backup-file-name>.sql
    
  4. Type password for your postgres user

To restore a database you can use psql.exe. (Note, the following is extracted from Alexandr Omelchenko's helpful answer which has been deleted for reasons not clear to me.)

  1. Open command line window
  2. Go to Postgres bin folder. For example:

    cd "C:\ProgramFiles\PostgreSQL\9.5\bin"
    
  3. Enter the command to restore your database. For example:

    psql.exe -U postgres -d MediaData -f D:\Backup\<backup-file-name>.sql
    
  4. Type password for your postgres user




回答2:


I was stuck here when creating the database dump file due to version mismatch. So I follow the below command to get the backup and restore.

pg_dump -h localhost -U postgres -p 5432 YourDbName > BackupFileName.dump


来源:https://stackoverflow.com/questions/28048412/how-to-backup-restore-postgresql-database-in-windows7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!