odbc_fdw
odbc_fdw : Foreign data wrapper for accessing remote databases using ODBC
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 8520 | odbc_fdw | odbc_fdw | 0.5.2 |
FDW | PostgreSQL | C |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-d-r | No | Yes | No | Yes | yes | no |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | MIXED | 0.5.2 |
18 17 16 15 14 | odbc_fdw |
- |
| RPM | PGDG | 0.6.1 |
18 17 16 15 14 | odbc_fdw_$v |
unixODBC |
| DEB | PIGSTY | 0.6.1 |
18 17 16 15 14 | postgresql-$v-odbc-fdw |
libodbc2 |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| el8.aarch64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| el9.x86_64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| el9.aarch64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| el10.x86_64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| el10.aarch64 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 | PGDG 0.6.1 |
| d12.x86_64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| d12.aarch64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| d13.x86_64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| d13.aarch64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u22.x86_64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u22.aarch64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u24.x86_64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u24.aarch64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u26.x86_64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
| u26.aarch64 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 | PIGSTY 0.6.1 |
Source
github.com/devrimgunduz/odbc_fdw
odbc_fdw-0.6.1.tar.gz
Install
Make sure PGDG and PIGSTY repo available:
Install this extension with pig:
Create this extension with:
Usage
Sources:
odbc_fdw exposes tables or driver-specific queries from an ODBC data source as PostgreSQL foreign tables. It is primarily a read/query bridge across heterogeneous systems; validate data-type conversions and remote-driver behavior before relying on it for production queries.
Core Workflow
Use driver instead of dsn for a DSN-less connection. Other driver attributes use the odbc_ prefix and may be placed on the server, user mapping, or foreign table. Put credentials in a user mapping. Quote case-sensitive attribute names, and wrap values containing = or ; in braces as required by the driver.
Queries and Import
sql_query overrides table; pair it with sql_count when the FDW needs an explicit row-count query:
Important Objects and Options
dsnordriverselects the ODBC data source; 0.6.1 restricts these server options to superusers because the driver manager loads shared libraries.schema,table,sql_query, andsql_countselect the remote relation or query.prefixchanges local names created byIMPORT FOREIGN SCHEMA.ODBCTablesList(server_name, ...)lists visible remote tables.ODBCTableSize(server_name, table_name)andODBCQuerySize(server_name, query)return remote row counts.
Version 0.6.0 restores compatibility and fixes crashes on recent PostgreSQL releases. Version 0.6.1 escapes remote literals and identifiers to prevent SQL injection, restricts driver selection, and redacts common credential attributes in debug connection strings. Upgrade before allowing delegated FDW use, while retaining normal server ownership and user-mapping controls.
Only the ODBC types listed by the upstream README are fully supported. Identifier length, driver SQL dialect, encodings, null handling, and binary values can vary. The source/package release is 0.6.1, while the control file and install SQL continue to declare extension version 0.5.2.