tds_fdw

Foreign data wrapper for querying a TDS database (Sybase or Microsoft SQL Server)

Overview

PGDG 1st Party Extension: tds_fdw : Foreign data wrapper for querying a TDS database (Sybase or Microsoft SQL Server)

Information

Metadata

  • Latest Version: 2.0.4
  • Postgres Support: 17,16,15,14,13
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can not install to arbitrary schema
  • Trusted: Untrusted, Require Superuser to Create
  • Schemas: N/A
  • Requires: N/A

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: tds_fdw_$v*
  • RPM Ver : 2.0.4
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-tds-fdw
  • DEB Ver : 2.0.4
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 tds_fdw_17
PGDG 2.0.4
tds_fdw_16
PGDG 2.0.4
tds_fdw_15
PGDG 2.0.4
tds_fdw_14
PGDG 2.0.4
tds_fdw_13
PGDG 2.0.4
el8 aarch64 tds_fdw_17
PGDG 2.0.4
tds_fdw_16
PGDG 2.0.4
tds_fdw_15
PGDG 2.0.4
tds_fdw_14
PGDG 2.0.4
tds_fdw_13
PGDG 2.0.4
el9 x86_64 tds_fdw_17
PGDG 2.0.4
tds_fdw_16
PGDG 2.0.4
tds_fdw_15
PGDG 2.0.4
tds_fdw_14
PGDG 2.0.4
tds_fdw_13
PGDG 2.0.4
el9 aarch64 tds_fdw_17
PGDG 2.0.4
tds_fdw_16
PGDG 2.0.4
tds_fdw_15
PGDG 2.0.4
tds_fdw_14
PGDG 2.0.4
tds_fdw_13
PGDG 2.0.4
d12 x86_64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4
d12 aarch64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4
u22 x86_64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4
u22 aarch64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4
u24 x86_64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4
u24 aarch64 postgresql-17-tds-fdw
PGDG 2.0.4
postgresql-16-tds-fdw
PGDG 2.0.4
postgresql-15-tds-fdw
PGDG 2.0.4
postgresql-14-tds-fdw
PGDG 2.0.4
postgresql-13-tds-fdw
PGDG 2.0.4

Installation

Install tds_fdw via the pig CLI tool:

pig ext install tds_fdw

Install tds_fdw via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["tds_fdw"]}' # -l <cls>

Install tds_fdw RPM from YUM repo directly:

dnf install tds_fdw_17*;
dnf install tds_fdw_16*;
dnf install tds_fdw_15*;
dnf install tds_fdw_14*;
dnf install tds_fdw_13*;

Install tds_fdw DEB from APT repo directly:

apt install postgresql-17-tds-fdw;
apt install postgresql-16-tds-fdw;
apt install postgresql-15-tds-fdw;
apt install postgresql-14-tds-fdw;
apt install postgresql-13-tds-fdw;

Enable tds_fdw extension on PostgreSQL cluster:

CREATE EXTENSION tds_fdw;




Last modified 2025-02-17: add extension part (cfa504b)