Hi,
I am trying to export the data from OLEDB source connection to Flat FIle destination (.CSV) and for the SSN field which character length 9 is omitting leading zeros
after the data load. Please let me know the correct soultion.
Original Data: 001234567
Required Data: 001234567
Omitted Data with leading zero's issue: 1234567
I have used data conversion by converting it to STR and WSTR and also derived column with below code but still having the same iisue.
Derived COlumn Logic: RIGHT(REPLICATE("0",9) + SSN,9) or RIGHT("000000000" + [Copy of SSN],9)
Appreciate if anyone can help resolve te issue.
Thanks,
Sandeep