DS Warning Message(Buffer overflow)

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
narenderv
Participant
Posts: 2
Joined: Wed Nov 13, 2002 10:48 am

DS Warning Message(Buffer overflow)

Post by narenderv »

Hi,

I am trying to update a table with 9 columns and I get the warning message "buffer overflow" and ofcourse the table is updated. I have similar jobs that does update on other tables but I do not get this warning message. Can someone help.

UPDATE ODS_CUSTOMER SET
CUST_CASID=:2,USERID_MODIFIED=:3,UCN_ULT_CREDIT_PARENT=:4, UCN_CUSTOMER=:5,ULT_CREDIT_PARENT_CASID=:6,
CUST_COUNTRY_CODE_DOMICILE=:7,CUST_COUNTRY_CODE_NATIONALITY=:8,
CUST_CURRENT_OBLIGOR_GRADE=:9,NAICS_CODE_6=:10
WHERE CUST_KEY=:1

Thanks ,
ogmios
Participant
Posts: 659
Joined: Tue Mar 11, 2003 3:40 pm

Post by ogmios »

You would have to give some more information.

Usually the warning you see is that you're trying to insert data of a wrong type in a column. E.g. inserting a non-numeric value in an INTEGER column.

Ogmios
cthuga
Participant
Posts: 4
Joined: Wed Aug 21, 2002 7:23 am
Location: France

Post by cthuga »

You can have this warning if you try to insert too much of data in a column, like a string of 15 chars in a column typed varchar(10).
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You can also get this message if the total number of characters in a row exceeds the limit set in uvodbc.config. By default this limit is 8K, but can be changed via the MAXROWBUFF parameter in this file.
Post Reply