I have a package which exports data from table to .csv file, it exports 600 000 records.
I have few columns which has leading zeros and trailing zeros, while exporting the data both leading and trailing zeros are missing.
EX: actual data coming from source
column1 column2
001 67.50
exported data in csv file
column1 column2
1 67.5
I tried many methods like placing data conversion, and also Replicate function in derived column.
i also tried by exporting the data to .txt file and use .cmd file to change the .txt file .csv file, all these methods yielded no results.
is there a way to achieve this?