Category Archives: SSIS

SSIS Child Errors in Parent Package

If you have a parent package that is looping through a set of files and calling child packages and want the parent package to continue even if the child package fails, there is a little work involved in making this … Continue reading

Posted in SSIS, Syndication | Tagged , , | Leave a comment

SSIS Lookup Cache Connection Manager with Excel

The lookup transform in SSIS 2008 gives you the ability to join data and eliminate non matching rows. One of the limitations of the lookup is the fact it requires an OLEDB connection. However, with the cache connection manager you … Continue reading

Posted in SSIS, Syndication | Tagged , , | 1 Comment

Partial Cache Lookup with a Date Range

When setting up a lookup in SSIS it is usually just a basic comparison between two key fields like an ID field. What if you want to compare and id and also find the specific date range. Let’s say the … Continue reading

Posted in SSIS, Syndication | Tagged , | 1 Comment

Replacing a SQL Cursor with SSIS

On a forum post recently the questions was asked how to replace a cursor with an SSIS package. This can be done several ways depending on the situation. In this situation there is a number on each row that determines … Continue reading

Posted in SSIS, Syndication | Tagged , | 4 Comments

White Paper – Troubleshooting SSIS

..My SSIS White Paper has been published! Download the White Paper and the Sample Files here. “SSIS is a fantastic Microsoft tool for performing Extract Transform and Loading (ETL) procedures. A challenge in SSIS is identifying a problem once you … Continue reading

Posted in SSIS | Tagged , , | Leave a comment

Handling Flat File Headers and Errors in SSIS

Using SSIS to load a flat file into a database is a common use of the tool. This works great in SSIS and is very fast due to the dataflow doing batch updates. This is easy to set up when … Continue reading

Posted in SSIS, Syndication | Leave a comment

Using the SSIS Merge Join

The Merge Join Transform in SSIS is a great way to load a Data warehouse quickly and an easy way to join two data sources together. There are a few requirements to join these two data sources. The data sources … Continue reading

Posted in SSIS, Syndication | Tagged , , | Leave a comment

Variables and Expressions with Connections in SSIS

Variables and expressions help make any SSIS package dynamic and flexible. It is always a best practice to use variables in a package, especially when the information is used more than once in the package. In any package you will … Continue reading

Posted in SSIS, Syndication | Tagged , , | Leave a comment

Convert EBCDIC to ASCII in SSIS

    Converting EBCDIC to ASCII in SSIS 2008 can seem like a daunting task. There is a lot of manual work involved in creating a data flow to move data from an EBCDIC system like AS400 or DB2, to an … Continue reading

Posted in SSIS, Syndication | Tagged , , | 10 Comments

SSIS For Each Loop over files with Date in Name

A common request I have received over the years is to move or copy files from one directory to another based on the file name.  This can be accomplished in SSIS without using any script task. You can do this … Continue reading

Posted in SSIS, Syndication | Tagged | 22 Comments