为 Postgres 9 安装 DBLink
有人可以阐明如何安装 Postgres 9 (Centos) 的要求,以便能够使用 dblink 进行 postgres 间数据库查询。
一般来说,似乎没有关于如何安装 dblink 要求的干净文档。
提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有 PostgreSQL 9.1(或更高版本),请确保已安装 contrib 软件包,例如,从您的 shell:
然后在数据库中,使用 DDL 创建扩展:
If you have PostgreSQL 9.1 (or later), make sure the contrib package is installed, e.g., from your shell:
Then within the database, use the DDL to create the extension:
安装DbLink
DbLink 位于 PostgreSQL 安装的 share/contribs/dblink.sql 中。要使用它,请在要使用它的数据库中加载 dblink.sql 文件。
来源:http://www.postgresonline.com/journal/archives/ 44-使用-DbLink-访问其他-PostgreSQL-Databases-and-Servers.html
Install DbLink
DbLink is located in share/contribs/dblink.sql of your PostgreSQL install.To use it, load the dblink.sql file in the database you would like to use it in.
Source: http://www.postgresonline.com/journal/archives/44-Using-DbLink-to-access-other-PostgreSQL-Databases-and-Servers.html