- 备份文件
pg_dump -h 127.0.0.1 -p 5432 -U postgres db_test > D:jiangxx/db_test.backup
- 恢复文件
psql -h 127.0.0.1 -p 5432 -d db_test -U postgres -f D:jiangxx/db_test.backup
pg_dump -h 127.0.0.1 -p 5432 -U postgres db_test > D:jiangxx/db_test.backup
psql -h 127.0.0.1 -p 5432 -d db_test -U postgres -f D:jiangxx/db_test.backup