SSIS conditional split complains of error if the incoming columns in a condition are evaluated as NULL.
The Error is :
“Error: The expression on “output “Unknown” (12743)” evaluated to NULL, but the “component “Conditional Split” (12740)” requires a Boolean results.”
Best way to resolve this is by proper NULL handling.
If the condition was cola > colb
then using !ISNULL(cola) && !ISNULL(colb) && cola > colb will handle the cases where either of the columns are NULL
0 Comments.