Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there way to dump heroku postgres database and import the data into my local SQLite database?

I tried using https://github.com/ludicast/yaml_db and heroku db:pull with no success. I am developing on Windows 7.

share|improve this question
    
Are you only after the data? You could export data as csv from Postgres and import data as csv to SQLite3. –  epylinkn Jul 17 '13 at 11:58
1  
Figuring out how to use Postgres in Dev is also probably a worthwhile experiment - it runs natively on Windows postgresql.org/download. –  mikeryz Jul 17 '13 at 14:57
add comment

1 Answer

up vote 2 down vote accepted

Please read through

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

and follow those to export.

share|improve this answer
    
This is one of my favorites Heroku blog posts. –  mikeryz Jul 17 '13 at 14:55
    
Well I did install Postgres. It is gonna be a lesson not to sidestep the problems. Thank you all. –  ivs Jul 18 '13 at 5:57
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.