ADO.NET Source in SSIS

The ADO.NET Source in SSIS (SQL Server Integration Services) is used to extract data from the Database using a .Net provider. The ADO.NET Source in SSIS uses ADO.NET Connection Manager to connect with the Database. Configuring ADO.NET Source in SSIS Drag and drop the data flow task from the toolbox to control flow and change … Read more

Pivot Transformation in SSIS

The Pivot Transformation in SSIS performs pivot operations on input data (Source Data). A Pivot Transformation in SSIS means converting individual row data into separate columns. We use the SSIS Pivot transformation to present the data in a crosstab or tabular format to understand it better. It will perform row based operations and rotate rows … Read more

Merge Transformation in SSIS

Merge Transformation in SSIS is used to merge two inputs (such as tables or files) and produce one output. Merge Transformation is very useful when we combine the error path data (after handling the errors) and normal data. This SSIS Merge transformation uses key column values to insert the data into destination columns. For example, … Read more