I am using conditional split on SSIS and I am getting errors as some of the rows contain NULL values. I know this can be changed by using the Derived Column and the REPLACENULL function. However, my table has about 200 columns and this would be very tedious to carry out.
I was wondering if there is anything I can do using Script Component which would loop through all the rows and change any NULLS to an empty string?
If you can not do the data conversion in your source's select You can do that in on
Script Component
in your `DataFlow.Before passing your data flow to your
conditional split
you can add aScript Component
as below image :Then in your script component you need to have below code :
But as i told and it is mentioned in comment the best way if it is possible is to do that in select when you want to read data from your source.