Scenario:
Reading in a file of comma delimeted values (with further delimeters inside those on some fields) from a flat file drop location. I then store each record individually to a work in progress database (business req vs technical req). So the database will contain two columns, ID and Record with Record storing a string like the following..
Lisa, Smith, 123 Way Street, Check~Cash~CC, 12.34~56.82~10.09, Yellow, etc
I now, at another date/time, want to pull that data out of SQL Record column. If I use the SQL Adapter it brings records back and I can see them as a single node element. But how do I do Flat File Like delimiter work on a returned SQL Column without writing it out to a flat file and bringing it back in again? Is there a way to do this in a map or orch?
Is there a way to setup delimeters and hence parse a SQL column that is essentially a comma delimeted record?
Thanks..