如何在postgresql中将数据从一个数据库复制到另一个数据库?

时间:2011-05-16 10:30:27

标签: database postgresql

我正在尝试将表格从一个postgresql 8.4复制到另一个postgresql 8.4,我不知道该怎么做?

3 个答案:

答案 0 :(得分:3)

你不能只从一个pg_dump获取并在另一个中导入吗?看起来很琐碎。
看看这个: http://www.postgresql.org/docs/8.4/static/backup-dump.html

答案 1 :(得分:0)

你应该能够使用数据库链接:

http://www.postgresql.org/docs/8.4/static/contrib-dblink.html

答案 2 :(得分:0)

如果您安装了postgres,则需要输入一次是psql:

CREATE EXTENSION dblink;