Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以说明如何安装 Postgres 9 (Centos) 的要求,以便能够使用 dblink 进行跨 postgres 数据库查询。
一般而言,似乎没有关于如何安装 dblink 要求的干净文档。
提前致谢。
如果您有 PostgreSQL 9.1(或更高版本),请确保已安装 contrib 包,例如,从您的 shell:
yum install postgres*contrib
然后在数据库中,使用 DDL 创建扩展:
CREATE EXTENSION dblink;
安装 DbLink DbLink 位于 PostgreSQL 安装的 share/contribs/dblink.sql 中。要使用它,请将 dblink.sql 文件加载到要使用它的数据库中。
资料来源:http ://www.postgresonline.com/journal/archives/44-Using-DbLink-to-access-other-PostgreSQL-Databases-and-Servers.html