I\'m using SSIS to upload data from a CSV file to a table from my database. I try to get 2 strings (one is for the date, the other is for the time) and concat them like this : <
You should probably change the format to
Row.FinalDate = DateTime.ParseExact(datsDateTime, "yyyyMMdd HH:mm", null);
Since your getting dates in yyyymmdd
format
Dates are stored not as string
but as integers
.If you want to display the data in dd/mm/yyyy format then you can use ToString() method with a specific format like
YourDate.ToString("dd/MM/yyyy")
but since you are storing in your database then ,it will be stored as integers Check the Dateformat in your sql server
dbcc useroptions