Hi,
I am using an oledb source with the following select
SELECT [EmployeeKey] ,[EmployeeBK] ,[SuperiorEmployeeBK] ,[Name] ,[FirstName] ,[DateOfBirth] ,[EntryDate] ,[EndOfProbationDate] ,[SeparationDate] FROM [dbo].[DimEmployeeCurrent]
The table looks like this
[DimEmployeeCurrent]( [EmployeeKey] [int] NOT NULL, [EmployeeBK] [int] NULL, [SuperiorEmployeeBK] [int] NULL, [Name] [nvarchar](50) NULL, [FirstName] [nvarchar](50) NULL, [DateOfBirth] [date] NULL, [EntryDate] [date] NULL, [EndOfProbationDate] [date] NULL, [SeparationDate] [date] NULL, )
SSIS now converts the date columns to datatype DT_WSTR. Why?
Thanks
Andi