Skip to content

Instantly share code, notes, and snippets.

@kagemusha
Created January 6, 2012 09:20
Show Gist options
  • Star 75 You must be signed in to star a gist
  • Fork 18 You must be signed in to fork a gist
  • Save kagemusha/1569836 to your computer and use it in GitHub Desktop.
Save kagemusha/1569836 to your computer and use it in GitHub Desktop.
Dump Heroku Postgres DB and load locally
Get the Heroku db as detailed here:
http://devcenter.heroku.com/articles/pgbackups#exporting_via_a_backup
1. heroku pgbackups:capture
2. heroku pgbackups:url <backup_num> #=>backup_url
- get backup_num with cmd "heroku pgbackups"
3. curl -o latest.dump <backup_url>
Then locally do:
$ pg_restore --verbose --clean --no-acl --no-owner -h localhost -U myuser -d mydb latest.dump
(your database must exist before can do this)
@SubaruWRX55
Copy link

what if my local is version 8 and heroku is using version 9?

@jensitus
Copy link

How about a local update?

@nmunson
Copy link

nmunson commented May 14, 2013

Thanks.

@enderahmetyurt
Copy link

Cheers mate.

@gobijan
Copy link

gobijan commented Jun 18, 2015

Worked great!

@dmilisic
Copy link

dmilisic commented Feb 3, 2016

Thanks.
I couldn't execute heroku pgbackups though, so I had to make the backup and download it via https://postgres.heroku.com/databases

Then, another problem arouse - my app wouldn't access the database (relation does not exist error or no schema has been selected to create in) and I had to run

grant usage on schema public to public;
grant create on schema public to public;

using psql, inside the database.

@Schwad
Copy link

Schwad commented Sep 22, 2017

Update: the command is now heroku pg:backups:capture

@Schwad
Copy link

Schwad commented Sep 22, 2017

And heroku pg:backups

@0xGerardo
Copy link

thanks!

@MeherajUlMahmmud
Copy link

Been searching around and trying out different commands for 2 hours. Finally, your gist helped me do it. Thanks a ton.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment