I have the following SSIS package:
In my package, flat file source data feeds into a conditional split component. One of the columns is AccountNo.
That column in the flat file source output datatype is: string [DT_STR].
I want to check in the Constraint Check component if AccountNo is an integer. For example, maybe that column in the flat file source is this:
12355ss2rt3
and that input is not an integer. I want to pass a valid integer number to the constraint check output. In the constraint check component, I have this:
this expression uses Type Cast Group and (DT_I8) condition, but I get this error:
How can I solve that?


