We recently did a large import with 30+ million records.
This is what we did.
We have setup a local copy of postgres. We are running a rails app so we hooked this up as our development db and ran all migrations to get to the proper table structure and indexes that we were looking for.
After that, we imported our data from our MSSQL and MySQL environments that we were later going to push to Heroku.
We ran our test scripts and tested our app out to make sure all the data was valid (checking columns like dates, boolean fields, and sets)
After all the data is set, we ran a local pgdump on the data. We used this command:
PGPASSWORD=your_db_password_here pg_dump -Fc --no-acl --no-owner -h localhost -U your_db_user_here your_db_name_here > mydb.dump
After that we put it on a private amazon s3 bucket so heroku can easily find it.
If you have multiple db's at Heroku or you are using the dedicated postgres instance, make sure you set your database from the command line:
heroku pg:promote HEROKU_POSTGRESQL_RED
Replace the HEROKU_POSTGRESQL_RED with yours. You can find it with the heroku pg:info command
If you don't do this, your db will be imported to a shared instance and you will have to redo this process.
You will also need to ensure you have the pgbackups addon turned on before doing the import. If you have not done that, do it now.
The next step is from Heroku's doc page: https://devcenter.heroku.com/articles/pgbackups#importing_from_a_backup
heroku pgbackups:restore DATABASE 'http://s3.amazonaws.com/.....mydb.dump?authparameters'
After that you should be ready to go. Feel free to ask questions. This took us a bit to get figured out as the size of our data dump was over 50gigs.