Tagged Questions
0
votes
1answer
52 views
Restoring only some tables into Heroku Postgres via heroku pgbackups:restore
According to the heroku docs, the following command restores a pg_dump into a Heroku Postgres Database:
heroku pgbackups:restore DATABASE 'https://s3.amazonaws.com/me/items/3H0q/mydb.dump'
However, ...
0
votes
1answer
16 views
How to pass filename to Heroku pg:sql command?
I want to load schema from structure.sql file to my Heroku database. On my localhost machine I do as follows and all works just fine, all tables are created:
C:\> psql -U postgres -a -d ...