Tag
database
2 notes.
How to Import/restore data into Heroku postgres database from a dump file
I was working on a rails app and i had a huge amount of data in my local Postgres database. This is what i did to import data into the database at heroku from a dump file of my local database.
PostgreSQL: Dump(Backup) and Restore a Database
Backup pg_dump is the utility i am using for backing up a PostgreSQL database. It makes consistent backups even if the database is being used concurrently. pg_dump does…