Using Script Component Transformation as SQL Server Function derived column

Did you tried to create a derived column in SSIS with a written sql server function before? This is impossible with Derived Column Transformation because you can not use sql server functions in this transformation. Solution: Use Script Component Transformation. this is a simple example : 1-create a sql server table with 2 fields named Read more about Using Script Component Transformation as SQL Server Function derived column[…]

How to create NOT IN on different database servers with SSIS package?

Problem: There is a source table and destination table with same structure, but in different databases and different servers . Suppose some of data from source table transferred to destination table in past, and the ID field is not IDENTITY, so all data in destination table has equivalent in source table. Now we want to Read more about How to create NOT IN on different database servers with SSIS package?[…]

Working with flat files dynamically in SSIS package

Problem: Create a directory based on each year in a specified path, and then create a flat file named with compound of year and month based on a template file. You need to transfer some data into this flat file from a source. The above scenario is a usual scenario when you work with flat Read more about Working with flat files dynamically in SSIS package[…]