Page 1 of 1

What does "insufficient data left in message" mean and how to avoid it?

Posted: Fri 21 Nov 2014 10:57
by jmuehlenhoff
Hi,

under certain conditions one of our customers gets:

EPgError "insufficient data left in message"

Our code is using the TPgLoader component to copy data to Postgres.

What exactly does this message mean? Are there any limitations we need to be aware of?

Re: What does "insufficient data left in message" mean and how to avoid it?

Posted: Fri 28 Nov 2014 09:54
by azyk
The error "insufficient data left in message" can occur in cases when a value in incorrect format is passed to a table field on the server. For example, if you pass a value 'abccd' (string) for a field of the uuid data type. A script for creating such a table:

Code: Select all

CREATE TABLE tbl_customer_master_data (credit_controller_id uuid);

Re: What does "insufficient data left in message" mean and how to avoid it?

Posted: Fri 28 Nov 2014 10:44
by jmuehlenhoff
Thanks, we'll have a look at the data types and loader input. :)

Re: What does "insufficient data left in message" mean and how to avoid it?

Posted: Wed 03 Dec 2014 13:11
by azyk
Feel free to contact us if you have any further questions.