I am exporting data from an SQL procedure to a flat file. My problem I have a Test column with data 1e2, 1e1, 1e3 ...... When I export to a flat file, the data for this column looks like 1.00E+02,1.00E+01,1.00E+03...... . What should I do to get the exact data in a flat file from SQL proc. Any help is appreciated. Thank.
1e2, 1e1, 1e3 .....
1.00E+02,1.00E+01,1.00E+03...... .
Make sure the column in Flat File Connection Managerhas DataTypea string [DT_STR]. This avoids the implicit conversion done in your column using SSIS. See image below:
Flat File Connection Manager
DataType
string [DT_STR]
This solved my problem,
Created an Excel template with a test column as text.
SSIS OLEDB Source, Data Conversion Excel Destination. Unicode DT_WSTR. , 1e1,1e2... Test.
Source: https://habr.com/ru/post/1689775/More articles:UISearchController does not display as expected - iosLoadError for dotenv / load when running Dotenv.load - ruby | fooobar.comMoney data type overflowing - castingkubernetes development environment to reduce development time - dockerHow does std :: variant become valueless_by_exception in this example? - c ++How to get the position of the component on the screen in the native response? - javascriptHow does the superstructure of structures within unions work? - cКак преобразовать результат Presto `ST_Distance` в метры? - sqlCreating MIDI files on the fly with Audiokit - iosEntity Framework Core migration - connection string - c #All Articles