Search found 153 matches

by soumya5891
Sat Mar 12, 2011 11:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IsNull not working
Replies: 9
Views: 7756

Whenever you extract that field from the database use any null handling function like COALESCE function because it may happen that database null does not match with data stage null
by soumya5891
Thu Mar 10, 2011 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key -- Database Sequence
Replies: 5
Views: 3945

You can generate surrogate key from a surrogate key generator stage and also from transformer fro DB sequence.And give the proper database related info there.
by soumya5891
Thu Mar 10, 2011 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records drop in Transformer.
Replies: 4
Views: 4072

I guess you defined the field in the transformer output as a not nullable field.So the records with null values are getting dropped.So in this case if you want null value just declare it as nullable. Or if you want it as not nullable then you can handle the null with null to empty or null to value f...