I have an SSIS data flow that uses a lookup. Sometimes the value to be looked up (in my stream, not in the lookup table) is null.

The MSDN Docs say:

consider using full caching, which supports lookup operations on null values.

I am using Full Caching (that is the default).

But when I run I get this error on my null rows:

Row yielded no match during lookup

If I change the result to ignore no-matches then it works fine. But that ignores all no-matches. I just want to allow nulls through (as null). Any other no-match should fail the component.

What am I doing wrong? How can I get nulls to write as nulls, but not ignore any other errors.

SSISFullCacheScreenshot

SSISErrorScreenshot

(NOTE: I have double checked my look up table. It has ALL the values that are in my source table. It just does not have NULL as a value (because it is weird to have a look up value for null.)

link|improve this question

75% accept rate
feedback

2 Answers

I had never noticed that line in BOL about the full cache mode. The answer to your problem is what you've already stated about having NULL in the reference set of data. A quick proof would be these two sample data flows.

In this example, I generate 4 rows of data: 1, 2, 3, and NULL (Column_isNull = true) and hit an in memory table that has all the values and perform a lookup between Column in the data flow and c1 defined in the in-memory table. It blows up as you described

Demo data flow with failed null lookup

I then added one more value to the lookup table, NULL and voila, the full-cache lookup is able to match NULL to NULL.

Demo data flow with valid null lookup

Takeaway

To make a NULL input value match in a lookup component, the reference data set must have a corresponding NULL value available as well as have the cache mode set to FULL.

link|improve this answer
That is what I was afraid of. I really don't want to have to do a lookup just to see that the value is null. It IS null, it does not map to null. Semantics I know, but not the way I want to design my database. – Vaccano Aug 30 '11 at 16:35
feedback

To work around this issue within SSIS, there is an alternative approach to a previous SO answer which can be applied.

Within the Lookup Transformation, you can redirect rows on error and then pass them to another destination which can simply be the same intended destination table within your database.

Therefore your destination table within the database will still receive all the rows (477 in screen shot below).

This approach therefore avoids the need to put dummy NULL values into your lookup table within your database, with the trade offs being:

  • An extra step within your SSIS package.
  • Error rows (non-NULL non-matches in this case) will always be loaded into the destination table. To help identify these rouge records, you can export the destination table into a txt file and then diff with the input source file to see any differences.

SSIS Null Values in Lookup

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.