Convert datetime to string in expression builder SSIS 2019

580 Views Asked by At

I encountered a strange problem, moving from VS2015 to 2019. I've got a variable that is setup like this;

 SUBSTRING( (DT_STR,50, 1256)DATEADD("DAY",0,GETDATE()) , 1, 10)

This works perfectly in VS2015 but now when I tried to add the same code in a project, it returns "Cannot convert 'System.String' to 'System.DateTime'."

Does anyone know anything about this?

1

There are 1 best solutions below

4
On

You can use c#

DateTime.Now.ToString("MM/dd/yyyy");

This link has all versions:

https://www.c-sharpcorner.com/blogs/date-and-time-format-in-c-sharp-programming1