In my Data Flow I'd like to check if the value is NULL
then assign DQ_CD (data quality code) to "2" (value cannot be null).
I know I can do it in the Script:
If Row.TRANSITNUMok_IsNull = True Then
Row.DQCD = 2
End If
but in this case you don't see how many rows failed this check in GUI
because you don't have Error Output.
I was wondering if maybe in Data Conversion Task I can do the same check
and from Error Output assign DQ_CD to the corresponding RECORD_ID.
In this case I can nicely see how many rows failed [NOT_NULL] check.