I am trying to run a simple SSIS import from a flat file to a SQL Server database. However, I have a date stored in the DDMMMMYYYY format in the input file. I cannot get it to convert into the db.
I get an error that it might loose a value as it tries to auto convert if I change the source column data type from string to date. I get an invalid cast exception if I try to just make the conversion on the SQL Server destination step.
Does anyone have an idea of how I can fix this one?