I have an SSIS package for doing ETL on a schema which has say 5 columns. Each of these columns needs to be cast to appropriate data types.
I initially did all cast inside a single data flow conversion task, which made it difficult to figure out what casting failed from the error output.
I later decided to use separate data flow conversion tasks in a row, for each column.
I want to know which approach will give me a better performance?
I get all my data from flat files(pipe separated)