3 year older data moving source to staging table and then loading to the final table after delete only moved data from source how to achive that in ssis package? This process should have happen daily.
I am using below query for select 3year old record
Select top 5000 column1,column2,column3,rec_date
from source_table
where (rec_date>DATEADD(year,-3,GETDATE()))
I create flow task for moving data but how to delete the moved records?