I have an SSIS package that takes data from a csv file goes through a data conversion to convert data type then imports into a database.
I wanted to remove part of a string from a column before importing it into the database so I included a derived column transformation.
I put the derived column task before the data conversion task. I set the Derived column to replace the column I want to change then put my expression in to replace the part of string.
It then goes to the data conversion and then to the import to database task. when I query the database it has put all the data from column 1 field into column 2 field it has not put the derived data in the column 2 field as it should because the fields are all mapped correctly.
has anyone else come across this?