Hello,
I need to create SSIS package, which runs incremental export from MySQL db to MSSQL. The export has ADO.NET source:
select * from test.Test where createddate > '" + (DT_WSTR,30)@[User::Date] +"'"
There is problem, that User::Date is last date of execution from MS SQL table and I have to convert MS SQL datetime datatype to reperesentation createdate in the above query for MySQL engine?
Thanks,
Running man