I see this resolved issue is over three years old now and appears to have been addressed. Nevertheless I am having the same issue. Keep in mind I just downloaded the adapaters last week so presumably I'd have the latest or very recent.
SELECT LEFT(mmatter, 5) AS [Client#], RIGHT(mmatter, 8) AS [Matter#], '2011-03-04T00:00:00.000' AS [Effective Date] FROM dbo.MG_LitHoldBackup WHERE mmatter LIKE '11669.0166%'
SSIS: Error: 0x0 at Data Flow Task, SharePoint List Destination: Error on row ID="1": 0x8102001c - Invalid Date/Time value in the data being updated.
So as you can see I am supplying the date as an expression. Things I've already tried:
Cast/Convert the string to a datetime value. Even Converted is as ISO8601 using the Convert/Style argument of 126.
Using, and not using an SSIS Data Conversion step inbetween in the input and output to convert the string to Unicode DT_WSTR
Any ideas of what I might be doing wrong or missing? Thanks.
SELECT LEFT(mmatter, 5) AS [Client#], RIGHT(mmatter, 8) AS [Matter#], '2011-03-04T00:00:00.000' AS [Effective Date] FROM dbo.MG_LitHoldBackup WHERE mmatter LIKE '11669.0166%'
SSIS: Error: 0x0 at Data Flow Task, SharePoint List Destination: Error on row ID="1": 0x8102001c - Invalid Date/Time value in the data being updated.
So as you can see I am supplying the date as an expression. Things I've already tried:
Cast/Convert the string to a datetime value. Even Converted is as ISO8601 using the Convert/Style argument of 126.
Using, and not using an SSIS Data Conversion step inbetween in the input and output to convert the string to Unicode DT_WSTR
Any ideas of what I might be doing wrong or missing? Thanks.