根据heroku docs,以下命令将 pg_dump 恢复到 Heroku Postgres 数据库中:
heroku pgbackups:restore DATABASE 'https://s3.amazonaws.com/me/items/3H0q/mydb.dump'
但是,有没有办法只将一些表恢复到数据库中?我尝试\copy
从psql
终端使用heroku pg:psql
,但恢复速度要慢得多。
例如,我正在寻找一种pg_restore -t my_table
在 heroku 上实际运行的方法。
此外,taps
从来没有为我工作过,这不是 ruby 1.9.3 的推荐方式。