Search found 3 matches

by renaudfa
Wed Oct 10, 2007 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenating Two datasets
Replies: 8
Views: 4377

Could you add 2 transformers ?
1 concatenate all fields of dataset 1 into 1 single field varchar(xxxx)
the other does the same for dataset 2
and then funnel both streams.
by renaudfa
Wed Sep 19, 2007 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Have you a trick for : Field not like list of value
Replies: 13
Views: 7350

Hi ArndW, I think this is not doing the same thing because I don't want to check if my field is equal to any of the unwanted word but I want to check if my field contains any of those words ... This is the "contains" part which causes me trouble. It's the same pain in SQL when you have to ...
by renaudfa
Tue Sep 18, 2007 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Have you a trick for : Field not like list of value
Replies: 13
Views: 7350

Have you a trick for : Field not like list of value

Hi there, I'd like to know if someone would have a trick to check if a field does not contain any word in a list of words. Something doing the check : If Index(ds1.field,"word01",1) + Index(ds1.field,"word02",1) + Index(ds1.field,"word03",1) + ... + Index(ds1.field,&quo...