I am trying to load a csv file in a SQL Server database table using SSIS. Currently before loading the file we are opening the file in excel and changing the format of the column B from General to Number. (if this is not done, incorrect data for that column is loaded)
e.g the 4th row below is date, but before loading we change the format of Column B from General to Number. which is then converted to value 42767 (correct data)
Column A Column B
-----------------
1. 11622
2. IZED
3. DGA-435
4. 1/02/2017
Now we have to automate this process and using some logic, can this be done in SSIS? Please suggest.
Thanks, Aj