Copy a table from one database to another in Postgres

前端 未结 19 1282
慢半拍i
慢半拍i 2020-11-28 00:21

I am trying to copy an entire table from one database to another in Postgres. Any suggestions?

19条回答
  •  生来不讨喜
    2020-11-28 01:02

    Same as answers by user5542464 and Piyush S. Wanare but split in two steps:

    pg_dump -U Username -h DatabaseEndPoint -a -t TableToCopy SourceDatabase > dump
    cat dump | psql -h DatabaseEndPoint -p portNumber -U Username -W TargetDatabase
    

    otherwise the pipe asks the two passwords in the same time.

提交回复
热议问题