New line character issue for sequential file stage

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

austin_316
Participant
Posts: 80
Joined: Fri Aug 21, 2009 7:49 am
Location: India

Post by austin_316 »

thanks everyone for the reply
we have got a workaround for this problem. instead of keeping the data in sequential and then calling the java file to access the file, we placed the data in a dataset and the called the java class from the java tranformer stage which will write the data into another dataset.
vishal_rastogi
Participant
Posts: 47
Joined: Thu Dec 09, 2010 4:37 am

Post by vishal_rastogi »

i have used the same situation in one of my job it is working fine .

Convert(char(10)," ",DSLink.columnname)
Vish
austin_316
Participant
Posts: 80
Joined: Fri Aug 21, 2009 7:49 am
Location: India

New line character issue for sequential file stage

Post by austin_316 »

iam assuming you have a transformer in the job. in our case we dont have a transformer stage and we are not sure in which column does the new line character comes. and also we dont want to use the convert() funtion for all the columns in the transformer. that is the reason why we went with java transformer stage.
Post Reply