Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

Using dblink would be more convenient!

truncate table tableA;

insert into tableA
select *
from dblink('dbname=postgres hostaddr=xxx.xxx.xxx.xxx dbname=mydb user=postgres',
            'select a,b from tableA')
       as t1(a text,b text);
share|improve this answer

Use pg_dump to dump table data, and then restore it with psql.

share|improve this answer
I tried using pg_dump but I get "Access is denied". – nix Jul 7 '10 at 13:39
1  
Then use another databaserole to connect, a role that has enough permissions. postgresql.org/docs/8.4/static/app-pgdump.html – Frank Heikens Jul 7 '10 at 13:43
What am I doing wrong? pg_dump -t "tablename" dbName --role "postgres" > db.sql "postgres" would be the user I'm trying to set the role to. It still gives me "Access is denied". – nix Jul 7 '10 at 14:48
Do you have permissions to write the db.sql file? – pcent Jul 7 '10 at 16:29
How do I check what permissions I have? – nix Jul 7 '10 at 17:27

You can also use the backup functionality in pgAdmin II. Just follow these steps:

  • In pgAdmin, right click the table you want to move, select "Backup"
  • Pick the directory for the output file and set Format to "plain"
  • Click the "Dump Options #1" tab, check "Only data" or "only Schema" (depending on what you are doing)
  • Under the Queries section, click "Use Column Inserts" and "User Insert Commands".
  • Click the "Backup" button. This outputs to a .backup file
  • Open this new file using notepad. You will see the insert scripts needed for the table/data. Copy and paste these into the new database sql page in pgAdmin. Run as pgScript - Query->Execute as pgScript F6

Works well and can do multiple tables at a time.

share|improve this answer
This is a good gui-based solution for moving data between databases. Thanks! – kgx Mar 7 at 19:42

This works like a charm:

pg_dump -t tablename dbname | psql otherdbname
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.