为 Postgres 9 安装 DBLink

发布于 2024-10-18 15:48:57 字数 129 浏览 1 评论 0 原文

有人可以阐明如何安装 Postgres 9 (Centos) 的要求,以便能够使用 dblink 进行 postgres 间数据库查询。

一般来说,似乎没有关于如何安装 dblink 要求的干净文档。

提前致谢。

Can someone please shed some light on how to install the requirements for Postgres 9 (Centos) to be able to use dblink for inter-postgres db querying.

There seems to be no clean documentation out there on how to install dblink requirements in general.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栖竹 2024-10-25 15:48:57

如果您有 PostgreSQL 9.1(或更高版本),请确保已安装 contrib 软件包,例如,从您的 shell:

yum install postgres*contrib

然后在数据库中,使用 DDL 创建扩展:

CREATE EXTENSION dblink;

If you have PostgreSQL 9.1 (or later), make sure the contrib package is installed, e.g., from your shell:

yum install postgres*contrib

Then within the database, use the DDL to create the extension:

CREATE EXTENSION dblink;
若沐 2024-10-25 15:48:57

安装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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文