SSIS Flat File Destination Export data issue
问题 Am exporting data from a SQL procedure to flat file. My issue is i have a column called Test with data 1e2, 1e1, 1e3 ..... .When i export to flat file, data for this column looks like 1.00E+02,1.00E+01,1.00E+03...... . What should i do to get exact data into flat file from SQL proc. Any help is appreciated.Thanks. 回答1: Make sure the column in your Flat File Connection Manager has DataType of string [DT_STR] . This will avoid the implicit conversion done on your column by SSIS. See the image