top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

I want to place these names separated by commas in another columns how can I do this?

+1 vote
244 views

If a column contains data like
rahul,rajesh,madhusudhan,seerat,pradeep,bhaskaran these are the names.

I want to place these names separated by commas in another columns how can I do this?

posted May 30, 2014 by Anuradha Tabyal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
seq file ------> Transformer -------> target

1.extract the source data into seq file.
2.In transformer source column to target , and apply the field function 
Field(column name, ',' , 1)
next same drag the source column to target , and apply the field function
Field(column name,',',2)
. 
.
.
Field(column name,',',5)
answer Jun 9, 2014 by Udita
...