Closed fmms closed 6 years ago
Fixed in code base.
Fix deployed in V0.22.0.0 release.
I still receive some Null Pointers for lookup components when CustomerPropertyCount == 2 in some packages. I'll try to find more information for debugging next week
Hi Keith,
I mentioned an Exception in #4 i was now able to narrow it down. However I am not sure what a "correct" fix is:
After adding a lot of debugging information, i could find the error in the expression
https://github.com/keif888/SQLServerMetadata/blob/master/DependencyAnalyzer2008/SsisEnumerator.cs#L1141
The problem is that
localIColumn.CustomPropertyCollection["JoinToReferenceColumn"]
is null.Changing this to
localIColumn.CustomPropertyCollection["JoinToReferenceColumn"].Value != null ? localIColumn.CustomPropertyCollection["JoinToReferenceColumn"].Value.ToString() : "null"
Makes the reading of SSIS packages work for me.
Thanks