前端之家收集整理的这篇文章主要介绍了
PostgreSQL在Linux上的恢复,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Windows上备份: pg_dump -U postgres olddb > db.backup 在Linux上恢复: #su - postgres $createdb newdb $initdb newdb $p
sql -U postgres newdb < db.backup $p
sql newdb #select * from tablename; (看看数据是否都过来了:)
原文链接:https://www.f2er.com/postgresql/197445.html