I am trying to copy an entire table from one database to another in Postgres. Any suggestions?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Using dblink would be more convenient!
|
|||
|
|
|
Use pg_dump to dump table data, and then restore it with psql. |
|||||||||||||
|
|
You can also use the backup functionality in pgAdmin II. Just follow these steps:
Works well and can do multiple tables at a time. |
|||
|
|