In this article you will learn about data conversion transformation in SQL Server Integration Service (SSIS).
As data may come from heterogeneous sources, there is often the need of converting data before the data is loaded into the destination. The problem can also rise when Unicode format is converted into non-Unicode format e.g. SSIS assumes all the data coming from Excel in Unicode format, and if the destination table is designed to store the data only in non-Unicode format, the execution fails as Unicode conversion fails to non-Unicode. There is one point to remember, and that is that data conversion is done on column basis. Having said that, this article focuses on how data can be converted in SQL Server Integration Service (SSIS). Let’s go through it step by step:
Basics of SQL Server