Hi dears,
i am loading data from oracle to sql server using ssis.there is a date field called "entry_date",using this date field i need to do incremental load,here the records are not there in oracle everyday,suppose in the oracle the maximum date is showing 27-06-2018,for the first load i wil do full load ,from the next load onwords i need to load after 27-06-2018 this date onwords.if the records are loading daily basis i can use the below satement.
select * from sample where entry_date>=sysdate-1
now i want to load the data after a particulur date(27-06-2018) onwords in a dynamic way.could anyone suggest me here.
Thanks,