postgresql 备份 和 恢复 整个数据库

Posted dy blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql 备份 和 恢复 整个数据库相关的知识,希望对你有一定的参考价值。

--备份用户mew的数据库mew的所有内容
pg_dump -U mew -d mew -h localhost > mew.sql
--删除原有数据库
dropdb -U mew -h localhost  mew
--创建数据库
createdb -U mew -h localhost mew
--恢复数据库
psql -U mew -d mew -h localhost < mew.sql

 

以上是关于postgresql 备份 和 恢复 整个数据库的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQL:单个数据库而不是整个集群的时间点恢复

postgresql数据库备份和恢复(超快)

postgresql数据库备份命令

PostgreSQL数据库备份和恢复

PostgreSQL数据库备份和恢复

PostgreSQL备份与恢复(第三章)