2017年7月20日 星期四

PostGreSql install dblink module

Refer: https://stackoverflow.com/questions/5075193/installing-dblink-for-postgres-9

PG 9.1後,可用下列方式,

先在OS安裝套件:

yum install postgres*contrib
在資料庫裡執行(安裝方式):
CREATE EXTENSION dblink;
缷載(反安裝)方式:
DROP EXTENSION dblink;