I need to convert a numeric dec(3,0) to char(3) so I can perform a lookup with this value.
Not only do I need to convert, but also format so it includes the leading zero.
The target value is char(3) but only the first 2 places are used.
What Data Flow Transformation do I use?
Example:
numeric value "1" will become char value "01 "
numeric value "31" will become char value "31 "