Using Variable as expression in Derived column transformation SSIS
问题 Essentially I a SSIS pkg with an Execute SQL statement that dynamically writes a REPLACE function based on some table values. (ie REPLACE(REPLACE(Col1," * ","",),"@@@","") ExecuteSQL result is put to variable @Cleanse In my Derived Column conversion Im trying to call @User::Cleanse as an expression in to replace the Value of the Col1 from the DataFlow. The result appears to be pulling the result of @Cleanse and using it as a string value rather than applying it as the REPLACE function. When