我已经用 IsNull 条件在 Sql Server 中编写了日期和时间列查询。我在下面提到了该查询。
我想要的查询是,如何编写 ssis 派生列。我已经在 ssis 中编写了该查询,但是出现了一些转换类型错误..
这里连接日期和时间列。
请帮我,
Sql 查询 ---
CAST(ISNULL(CONVERT(Nvarchar(10),InitialDate,101), '01/01/1900') AS Nvarchar(10))+ ' ' + ISNULL(CONVERT(NVarChar(8),InitialTime,108), '00:00:00') as CourtDttm
SSIS 派生列
(DT_DBTIMESTAMP)((DT_STR,255,1252)(ISNULL(InitialDate) ? ((DT_DBTIMESTAMP)"01/01/1900") : (InitialDate)) + " " +
((DT_STR,255,1252)(ISNULL(InitialTime) ? ((DT_DBTIMESTAMP)"00 : 00 : 00") : (InitialTime))))
Errors --[Derived Column [40]] Error: An error occurred while attempting to perform a type cast.