Error Retreiving results from server

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
rajeevm
Participant
Posts: 135
Joined: Sun Jan 22, 2006 10:44 am

Error Retreiving results from server

Post by rajeevm »

Hi All,

I am trying to populate the Stage last table with the updated records what I have in the stage table but I am getting an error saying that "Error Retreiving results from server" and also I am getting "[IBM][CLI Driver] CLI0111E Numeric value out of range. SQLSTATE=22003"

Can you please help me out what does this mean exactly?

Thanks for the help.
shilpa79
Participant
Posts: 131
Joined: Thu Jan 20, 2005 5:59 pm
Location: Virginia

Re: Error Retreiving results from server

Post by shilpa79 »

May be you have to check column by column and see if you have any sqltype or length not matching to any column on the target DB.
Last edited by shilpa79 on Tue Nov 07, 2006 2:26 pm, edited 1 time in total.
narasimha
Charter Member
Charter Member
Posts: 1236
Joined: Fri Oct 22, 2004 8:59 am
Location: Staten Island, NY

Post by narasimha »

Your input values are larger that your target fields can handle

Search my friend you will get a lot of results on similar issues
Narasimha Kade

Finding answers is simple, all you need to do is come up with the correct questions.
rajeevm
Participant
Posts: 135
Joined: Sun Jan 22, 2006 10:44 am

Post by rajeevm »

Hi


Thanks for your reply but each and every column is same and the length of the columns are also same.

I don't know why its coming like this I reran the job twice.

Thanks for the help,
shilpa79
Participant
Posts: 131
Joined: Thu Jan 20, 2005 5:59 pm
Location: Virginia

Post by shilpa79 »

Why donot you delete the input stage and again import the metadata and see, if it works
validate the data may be in char field its passing some numeric values.......
rajeevm
Participant
Posts: 135
Joined: Sun Jan 22, 2006 10:44 am

Post by rajeevm »

Thanks Shilpa,

I reloaded the meta data and I changed the columns in this which were different in SQL select may be that is why I was getting that one .

Thanks for your help,
narasimha
Charter Member
Charter Member
Posts: 1236
Joined: Fri Oct 22, 2004 8:59 am
Location: Staten Island, NY

Post by narasimha »

Did that solve your problem?

Here is a reference for Call Level Interface (CLI) messages, for further use.

http://publib.boulder.ibm.com/infocente ... climsg.htm
Narasimha Kade

Finding answers is simple, all you need to do is come up with the correct questions.
kab123
Participant
Posts: 92
Joined: Tue May 18, 2004 4:05 pm

Post by kab123 »

you are trying to load a value which is out of its range.
ex: If target column's datatype is Decimal(2,2) and you send a value 20.300 you will get this problem. try to truncate the data and load 20.30 and see if that problem exists.
Thanks
Post Reply