How to work with multiple files in FTP Task

FTP Task is one of SSIS tasks for File Upload,Download or manage ftp file and folders, FTP Task Configuration is easy and all things that must be done is that create a FTP Connection Manager and then set File Transfer configurations. But problem is when you must do this with more than one file, Answer Read more about How to work with multiple files in FTP Task[…]

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[…]