I have an SSIS task which imports a flat file into sql.
I have two types transformations to make, the first removes a hyphen from a column, and the second removes a decimal place from a different column.
The issue I'm facing is that the hyphen operation needs to be applied to 50 columns, and the decimal place operation to 100 columns.
Is there a quicker way to do this than simply creating an expression for all 150 columns?
The columns are sequentially named, i.e. col1, col2, col3 etc
Thanks