JDBC_FDW icon indicating copy to clipboard operation
JDBC_FDW copied to clipboard

FDW that wraps JDBC for PostgreSQL.It can be used to connect and fetch data from any data source that supports JDBC

Results 18 JDBC_FDW issues
Sort by recently updated
recently updated
newest added

Hello! Please, is it possible to modify foreign data (insert,update,delete) trough jdbc_fdw? Example, i'm using jdbc_fdw to read a table from a DB2 database. Is it possible to insert, update...

Hello! We are using jdbc_fdw to connect do DB2, and we noticed that all queries are very slow compared with the db2 client installed at the same machine. We are...

Hello! I have the following issue: ``` ~ sudo USE_PGXS=1 pgxn install JDBC_FDW INFO: best version: jdbc_fdw 1.0.0 INFO: saving /tmp/tmp8qwZCq/jdbc_fdw-1.0.0.zip INFO: unpacking: /tmp/tmp8qwZCq/jdbc_fdw-1.0.0.zip INFO: building extension gcc -Wall -Wmissing-prototypes...

Hi, PDI is an open source ETL tool. It also supports virtual tables which can be accessed by the pdi dataservice JDBC ThinDriver. This JDBC driver contains multiple jars. In...

Hi, Is there a way to have jdbc_fdw for windows? I'm not able to find it anyware but still see people with issues regarding jdbc_fdw.dll. Regards

FDW in PostgreSQL 9.5 supports automatically importing the schema from the foreign data source. It would be awesome to add logic to JDBC_FDW in order to have this happen with...

I currently use JDBC_FDW with PostgreSQL 9.3 and db2, and works perfect, but with the Postgresql 9.5's new feature "IMPORT FOREIGN SCHEMA", after compile jdbc_fdw for work with that version...

In order to comile with PostgreSQL 9.5, in file JDBC_FDW/jdbc_fdw.c, on line 1079, change the ending from: scan_relid, NIL, NIL)); to: scan_relid, NIL, NIL, NIL)); I still use this (jdbc_fdw)...

Hello All, I am trying to install JDBC_FDW extension on the following environment: OS: CentOS 7.2 Postgres: 9.5.0 I am following instructions from this link ( https://github.com/atris/JDBC_FDW/wiki/Installation-instructions ) When I...