I am trying to export a CSV file from Heroku's PostGresql database to import it into a MongoDB outside of Heroku. Does anyone know of any good way of exporting a CSV file from directly from the Heroku website? The question is asking how to export a CSV file using Heroku's web interface, not the command line interface.
1 Answer
You can export a csv of a single table using dataclips: https://dataclips.heroku.com
To export the entire database like this you would need to do this one table at a time
1 Comment
thewheelz
great - works very well!