I do have a source team data sent as below:
Name | ID | StateCode |
---|---|---|
Abc | 1 | CA,GE |
Xyz | 2 | IL,MA |
As you can see the StateCode
column has again comma separated values. Can anyone suggest how can the above records read in Ab Initio?
Name
and ID
are fixed length.
I've handled this in the past making a character that is not part of the data as the delimiter. The one I have used frequently is '\x01'. Another way is to use quotes around the data field. You can use read csv component to specify that option. Let me know if you have more questions. If you're looking to read a column with multiple values separated by commas, you could read them into a vector.