Postgresql 数据库备份与恢复

前端之家收集整理的这篇文章主要介绍了Postgresql 数据库备份与恢复前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一、备份
pb_dump -U postgres autoRepair > c:\b

pg_dumpall -U postgres > C:\b
二、恢复

psql -U postgres -d autoRepair<c:\b


注释

一、备份

-U 用户名

autoRepair数据库

>c:\b 保存到C盘下的b文件

原文链接:/postgresql/196759.html

猜你在找的Postgre SQL相关文章