Re: Bind Parameter is Too Big

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Kluzak, Matthew C(dot)" <mckluzak(at)nd(dot)gov>
Cc: "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: Bind Parameter is Too Big
Date: 2022-09-01 20:48:01
Message-ID: 639450.1662065281@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Kluzak, Matthew C." <mckluzak(at)nd(dot)gov> writes:
> I recently updated two comment columns in two tables, both on the Sybase and Postgres sides, from varchar (255) to varchar(1000). The app can succesfully input data with up to 1000 characters to the updated columns in Postgres. The generated SQL statement files can insert the data into the first Sybase database, the data successfully pipes to the master Sybase database, and then successfully pipes that to the other Sybase database . However, when trying to pipe the data from Sybase to Postgres I get the error "Bind Parameter for value :9 is Too Big (2000)." The comment column is the 9th column.

There is no such string in the Postgres source code (it doesn't even
meet our message style guidelines). So this is certainly not coming
from the Postgres server. You didn't specify what's the software
stack on the client side, but it has to be coming from one or another
layer there.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Kluzak, Matthew C. 2022-09-01 20:51:44 RE: Bind Parameter is Too Big
Previous Message Adrian Klaver 2022-09-01 20:46:17 Re: Bind Parameter is Too Big