I am using SSIS (SQL Server Integration Services) and using the Ole DB Source Component.
One of the columns is specified as DataType: DT_NUMERIC, Precision: 18, Scale: 4. When the number to the left of the decimal is zero, the zero gets truncated.
0.1234 becomes .1234 (I want 0.1234)
Is there a simple solution to preserving the zero, or do I need to create a derived column and convert the value to a string and pad it with a zero as needed?
Edit: Please close this as a duplicate of How do I get SSIS Data Flow to put '0.00' in a flat file?.