Re: What is the best way to do this in Postgres

From: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
To: kunwar singh <krishsingh(dot)111(at)gmail(dot)com>
Cc: "pgsql-sql(at)lists(dot)postgresql(dot)org" <pgsql-sql(at)lists(dot)postgresql(dot)org>
Subject: Re: What is the best way to do this in Postgres
Date: 2024-12-08 15:26:43
Message-ID: CAKFQuwbkVaAHT+nBfwffZY89pWvqtkK4q0aOmX9PT3Hf7oz2sA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Sunday, December 8, 2024, kunwar singh <krishsingh(dot)111(at)gmail(dot)com> wrote:

>
> I know I can create a bash script or Python script , but I am wondering if
> there is a smarter way to do it in Postgres?
>
>
Your concurrency requirement makes doing it in the server quite difficult.
Using anything that can launch multiple processes/threads and initiate one
connect each is your best option. Many things can, so pick one you are
familiar with. There is little complexity here that specialized tooling
would be needed for.

David J.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Carl Sopchak 2024-12-08 16:50:21 Re: What is the best way to do this in Postgres
Previous Message kunwar singh 2024-12-08 11:38:53 What is the best way to do this in Postgres