I am trying to copy tables from one postgresql8.4 to another postgresql8.4 and I am not sure how do I do that?
3 Answers
Can't you just take pg_dump from one and import in another? Seems quite trivial.
Take a look at this:
http://www.postgresql.org/docs/8.4/static/backup-dump.html
Comments
You should be able to so it using a database link:
http://www.postgresql.org/docs/8.4/static/contrib-dblink.html
1 Comment
baash05
Could you add a bit to that answer? I get "function dblink... does not exist".. Any idea's how to get around that?