I have fetched data from Salesforce using Azure Data Factory into my Azure SQL database. I have fully setup linked services and datasets. I have fully checked the data which I fetched from Salesforce is coming right through my data factory pipelines.
Now I want my pipeline should automatically update the new data coming from Salesforce into my Azure SQL database. I do not know how I can achieve this. Can it be done using triggers or I would have to use different Azure service to fetch real time data?
Moreover I want to fetch data in such a way that if someone delete a row in any object it should get updated in my Azure SQL database as well.
I tried using upsert but it took 2 hours to just fetch 500 thousand rows of data.