Postgres on Heroku and dumping single table to dump file

前端 未结 3 1902
悲&欢浪女
悲&欢浪女 2020-12-13 18:27

I am using Postgres on Heroku and am needing to dump one table from my production DB and dump it into my staging DB. I have the heroku tool belt installed, but am not sure h

相关标签:
3条回答
  • 2020-12-13 19:17

    Take a look at taps (db:pull), your use case is covered by this answered question, I believe.

    0 讨论(0)
  • 2020-12-13 19:27

    You can dump a single table of data like so:

    $ pg_dump --no-acl --no-owner -h [host ip].compute-1.amazonaws.com -U [user name] -t [table name] --data-only [database name] > table.dump
    

    You can get all of the values needed with this:

    $ heroku pg:credentials:url [DATABASE] -a [app_name]
    Connection info string:
       "dbname=[database name] host=[host ip].compute-1.amazonaws.com port=5432 user=[user name] password=[password] sslmode=require"
    Connection URL:
        postgres://[username]:[password]@[host ip].compute-1.amazonaws.com:5432/[database name]
    

    This will prompt you for your password. Enter it, and you should then proceed to get a file table.dump on your local drive.

    You probably want to truncate the table on staging:

    $ echo "truncate [table];" | heroku pg:psql [DATABASE] -a staging_app
    

    With that file, you can use psql with the Connection URL:output of a new call to pg:credentials for the staging app and restore just that table.

    $ psql "[pasted postgres:// from pg:credentials:url of staging app]" < table.dump
    SET
    SET
    ...
    ...
    ...
    ...
    $ 
    
    0 讨论(0)
  • 2020-12-13 19:27

    @catsbys answer

    I needed to add the port as well

    pg_dump --no-acl --no-owner -h [host ip].compute-1.amazonaws.com -p [port] -U [user name] -t [table name] --data-only [database name] > table.dump

    0 讨论(0)
提交回复
热议问题