HI

I have a csv file and one of the column is concatanated like ".col1:.col2"

I am using ssis to load csv file into a sql table. How can i seperate the column?

thanks

link|improve this question

50% accept rate
feedback

1 Answer

Here is how you could do it:

  1. Add a data flow task
  2. As data source set up a flat file connection, pointing to you CSV file.
  3. Add a derive column transform, with two columns as follows:

Col1, with the expression: SUBSTRING(COLNAME, 1, FINDSTRING(COLNAME, ":", 1) - 1)

Col2, with the expression: SUBSTRING(COLNAME, FINDSTRING(COLNAME, ":", 1) + 1, LEN(COLNAME) - FINDSTRING(COLNAME, ":", 1))

Finally, load the relevant fields of the dataflow into you Sql destination.

I haven't tested the expressions myself, so they might have some one-off errors.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.