Postgresql的dump数据库备份与还原

Postgresql的dump数据库备份与还原,第1张

概述备份 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:\Ba

备份

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
总结

以上是内存溢出为你收集整理的Postgresql的dump数据库备份与还原全部内容,希望文章能够帮你解决Postgresql的dump数据库备份与还原所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1176057.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存