I have the following SQL statement in the DataReader.SQLCommand.
select * from myTable where DataEdited > 'some hard coded date data'
I want to read the above 'some hard coded date data' from a table sitting in different database which is not the same server where the DataReader is connected.
How to do that
I can populate the 'some hard coded date data' to a SSIS variable but do not know how to embed that in the SQL statement.
Thank you for your thoughts.
Smith