I seem to come up against this issue each time I try to load some excel rows into SQL.
I have a very simple spreadsheet with a single row that I am going to load into a very simple SQL table (at this stage this is just a prof of concept). I have mapped the columns but get errors for theDate, received, onsite and resolved.
In the DB the columns for these are date, time, time, time respectively.
The data in the spreadsheet is held as: 18/06/2020, 1:00, 1:10, 1:15 respectively.
The errors are
The column "Received" can't be inserted because the conversion between types DT_DATE and DT_DBTIME2 is not supported.
So I go to the advanced editor for the SQL destination and to the Input and Output properties tab. Under external columns I can change the datatype from DT_DBTIMESTAMP to DB_DATE, click ok but when I go back to the tab the datatype has reverted back to DT_DBTIMESTAMP.
Can someone help me understand what is happening here and what I need to do in order to get past this?