SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "Lookup" failed because error code 0xC020901E occurred
Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "Lookup" failed because error code 0xC020901E occurred, and the error row disposition on "Lookup.Outputs [Lookup Match Output]" specifies failure on error. An error occurred on the specified object of the specified component. There may be error messages posted before this with more information about the failure.
Solution:
Two things to be noted here, Even
though values are same in both table, if the data type is different (char in 1st
table and varchar in 2nd table) error will be thrown saying that no match.
In lookup properties set validate
metadata to false. Because it is validating metadata as well. This should be
done if you are so sure that both table structure is sync.
I appreciate the time you spent finding that information
ReplyDeleteThanks for your feedback
Delete