Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What does sqlcode -302 means? Where do i get the sqlcode definitions?

Please advice

Thanks,

share|improve this question

1 Answer

up vote 4 down vote accepted

You can find the codes in the DB2 Information Center. Here's a definition of the -302 from the z/OS Information Center:

THE VALUE OF INPUT VARIABLE OR PARAMETER NUMBER position-number IS INVALID OR TOO LARGE FOR THE TARGET COLUMN OR THE TARGET VALUE

On Linux/Unix/Windows DB2, you'll usually use the SQLSTATE part to look up the relevant code. Here's a list of those.

share|improve this answer
Thank you so much. This helped. – beetri Mar 8 '12 at 23:43
In encountered this in versino 10. Is there a way to find which column caused this? For DB2 version 10, explanation is here : publib.boulder.ibm.com/infocenter/dzichelp/v2r2/topic/… – Ravindra Gullapalli Aug 9 '12 at 7:25
If you look at the message that should come with the error, THE VALUE OF INPUT VARIABLE OR PARAMETER NUMBER position-number IS INVALID OR TOO LARGE FOR THE TARGET COLUMN OR THE TARGET VALUE, position-number should give you the number of the column that is causing your troubles. – bhamby Aug 9 '12 at 14:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.