I have an execute sql task and I have to store a global variable GivenDate = getdate().
select @givendate = convert(varchar(10),getdate(),101) I have selected the parameters and given @givendate to SSIS variable Date
I get the error "Executing the Query failed".
How do I resolve this? Is there a better method to assign today's date to an SSIS variable?
In the middle of difficulty lies opportunity.