I am using ODBC source in Data flow task of SSIS. I want to select only latest data from ODBC source,
Here is my query:
Select * from ODBCTable where date >= @[user::date1]
But i am getting error while parsing query.
What is the alternative way this? How can i pass the variable and how to create effective variable to pass the query that can give me only latest today's date data.