Is there a way where I can check if a field is numeric in a derived column / Conditional separation of a data flow task in Sql Server Integration Services 2005.
Functionality should be like an ISNUMERIC () function.
I am currently using
((DT_NUMERIC,12,0)fieldname= (DT_NUMERIC,12,0)fieldname)
in the displayed column expression to check if the field name is numeric. But if the field name contains characters like 123ABC instead of the digit 123, the above expression throws an exception due to conversion failure and termination of the package.
If we had the function ISNUMERIC (), we did not need to do all this circus. Does anyone know if there is any function like this to check if a field is numeric or not in SSIS.
source
share