How to avoid below warning?

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
K.A.R.PAULSON
Participant
Posts: 23
Joined: Sun Aug 01, 2004 2:33 am
Location: Dubai
Contact:

How to avoid below warning?

Post by K.A.R.PAULSON »

I am getting the below warning in reject link. How can it avoid?

Reject_Data: When checking operator: When validating export schema: At field "exchrate": "null_field" length (1) must match field's fixed width (16)

If any one help me it will be great.

Thanks in advance.
Regi
rajeev_prabhuat
Participant
Posts: 136
Joined: Wed Sep 29, 2004 5:56 am
Location: Chennai
Contact:

Post by rajeev_prabhuat »

Hi,

What is the datatype of the column "Exchrate" that you have specified in the source and the Rejection.

Regards,
Rajeev Prabhu
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You've made the reject file a fixed-width format file.

You've specified a display (storage) width for the column Exchrate to be 16 characters.

You've specified a NULL-replacement string that is fewer than 16 characters. This is what DataStage is complaining about; you must follow the rules that you yourself set!

Make the NULL-replacement string 16 characters long, even if some of them are space characters.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply