Postgresql的dump数据库备份与还原

前端之家收集整理的这篇文章主要介绍了Postgresql的dump数据库备份与还原前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

备份

pg_dump.exe -h localhost -p 5432 -U postgres -F plain -v -f C:\Backup.sql db1 2> C:\Backup.log

pg_dump -U postgres DB001 > D://DB001.dmp

还原

psql.exe -h localhost -p 5432 -U postgres -d db1 -f C:\Backup.sql

psql-U postgres -d NEWDB001 -fD://DB001.dmp

sql备份

pg_dumpall.exe -h localhost -p 5432 -U postgres -v -f C:\All.sql 2> C:\All.log

sql还原

psql.exe -h localhost -p 5432 -U postgres -f C:\All.sql

猜你在找的Postgre SQL相关文章