postgresql – 如何从heroku下载db?

前端之家收集整理的这篇文章主要介绍了postgresql – 如何从heroku下载db?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用heroku,我想从我的应用程序(heroku)下载数据库,所以我可以做一些更改,我已经安装了pgbackups,但使用英文pgbackups:url下载一个.dump文件

如何下载postgresql文件或将该.dump转换为postgresql文件

如果您使用Heroku的pgbackup(您可能应该使用它):
$ heroku pg:backups capture
$ curl -o latest.dump `heroku pg:backups public-url`

将其翻译成Postgres数据库

$ pg_restore --verbose --clean --no-acl --no-owner -h localhost -U myuser -d mydb latest.dump

https://devcenter.heroku.com/articles/heroku-postgres-import-export

原文链接:https://www.f2er.com/postgresql/193283.html

猜你在找的Postgre SQL相关文章