postgresql的两种插件
1.Ubuntu安装postgis插件
1> 查询当前postgresql版本支持的postgis
apt-cache search postgis
2> 安装对应版本的postgis
apt-get install postgresql-9.5-postgis-2.2
3> 在指定的数据库下创建postgis
CREATE EXTENSION postgis;
2.Ubuntu安装dblink插件
在指定的数据库下创建dblink
CREATE EXTENSION dblink;
查看dblink的链接:
select dblink_get_connections();
建立dblink:
select dblink_connect('rtea','host=127.0.0.1 dbname=*** user=postgres password=postgres');
断开dblink
select dblink_disconnect('rtea');
转载自:https://blog.csdn.net/weixin_42211693/article/details/88694719