I need to split the flow of data inside the data flow task of ssis based on a string comparison.
For example inside the split task i'm using this code "ISNULL(FINDSTRING("a,b,c,d",a,1))"
which would return true(coz the findstring function returns 1 for this case) and it will always be true because even if i use "ISNULL(FINDSTRING("a,b,c,d",e,1))"
the findstring function returns 0....
I need some function inside the split task where it compares two strings and returns true/false and based on the output i split the data flow...
Any suggestions are much appreciated. Thanks