Hi,
I want to split a column into 3 columns, i am getting the data from a tab delimited file which will have a column called "name", the format of which will be
"LastName,FirstName MiddleName"
I want to split this into 3 colums,
LastName FirstName MiddleName
Could you guys tell me how can this be done?
Thanks
Aviral
hi, I have source like ID,NAME 1&2,A&B 3/4,C/D 5&6,E/F In my target the data would be like ID,NAME 1,A 2,B 3,C 4,D 5,E 6,F How can i achieve this can any one help me