I am trying to read a text file in SSIS (2005/2008). I created a connection to the file and placed the file with the flat file and it works fine in the preview, but when I try to start, I get the error message:
[Derived Column [91848]]
Error: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR
So, I determined that there are several columns with decimal numbers that use period as separators. But since I work in a Scandinavian environment, servers expect a comma as delimiters.
What works is manually changing the period separator in the regional settings on a Windows server, but this is not an adequate solution.
How to import a flat file using SSIS without changing regional settings on the server on which the package is deployed?
Rupal source
share