We are getting a flat file from one of our vendors for reporting purposes. It is a csv file. The issue is they have an extra comma in the date field but no text qualifier so the source editor in SSIS reads the date as 2 separate fields.
Here is an example:
,21-Feb, 2013 18:02:59,21-Feb, 2013 00:02:00,
So instead of reading them as 2 date fields it reads it as 4 fields. Any thoughts on how to correctly parse that out? Fixed width won't work because of the other column lengths.