Re: can a linux program, running on the client side, generate data to load a temp table ?
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: dfgpostgres <dfgpostgres3@gmail.com>
Cc: pgsql-general@postgresql.org
Date: 2026-06-19T00:56:28Z
Lists: pgsql-general
dfgpostgres <dfgpostgres3@gmail.com> writes: > My question is about whether or not I can get something like this to run on > the client side (where the script can be found). psql's "\copy ... from program" might help you. That just addresses the data transfer though, the other logic will need to be implemented client-side as well. regards, tom lane