I'm using SQL Server 2008 Integration Services (SSIS) and would like change empty strings on one of my columns (Unicode string(DT_WSTR-50)) to NULLs. I found some related posts but that doesnt seem to work.
I tried:
Column == "" ? NULL(DT_WSTR,50) : Column