I have a process where I'm pulling data from Excel. The data type in excel is date. The target column in SQL Server is VARCHAR(20). I do a data conversion transformation in my package where I cast the dates to string [DT_STR] with length 20.
The original values are 2/19/2013
They show up in the database as 41324.
What is causing this and what is the solution?