[resolved] Insert Null into Expression for Column in tMap
On an output data stream I can't figure out how to have the output column be transformed to NULL or even empty string for a particular column.
The output column metadata is varchar(2)
I have tried all kinds of useless things:
Char(0)
''.tostring()
Null
NULL
etc etc
Variables etc.
Most of the time i get 'Invalid Operand Types String and Char')
This seems so simple- how am I being stupid?
Thanks. Marc