Re: Incremental load from SQL server DB to postgressql

From: Muhammad Usman Khan <usman(dot)k(at)bitnine(dot)net>
To: Sabyasachi Mukherjee <mukherjee(dot)sabyasachi(at)outlook(dot)com>
Cc: "pgsql-admin(at)lists(dot)postgresql(dot)org" <pgsql-admin(at)lists(dot)postgresql(dot)org>
Subject: Re: Incremental load from SQL server DB to postgressql
Date: 2024-09-06 03:44:20
Message-ID: CAPnRvGtkbRY=J2H6jJnN8bATgQFdnYsoL1wMsR2pPvPzvrgQEQ@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi,

You can use pgloader. It is a powerful tool that can migrate data from SQL
Server to PostgreSQL efficiently, and it supports incremental loads or the
other option is to use file_fdw, it allows PostgreSQL to directly query
flat files as if they were tables, without importing the data into
PostgreSQL. It can be useful if you can periodically export data from SQL
Server into flat files and then query them from PostgreSQL.

On Thu, 5 Sept 2024 at 18:54, Sabyasachi Mukherjee <
mukherjee(dot)sabyasachi(at)outlook(dot)com> wrote:

> Hello All,
>
> I have to implement an incremental load from a SQL server DB to a
> postgresql DB. I would prefer it to be pull from postgres.
> SSIS is not the preferred option. Can you please advise about the
> possibilities?
>
> Sabyasachi Mukherjee
>

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Laurenz Albe 2024-09-06 05:02:40 Re: Parallelize WAL Sender and WAL receiver
Previous Message Muhammad Usman Khan 2024-09-06 03:33:23 Re: Parallelize WAL Sender and WAL receiver