Hi @Rocky420 ,
Sorry for the delayed response. You can set up "incremental copy" to only copy delta data (new/updated/deleted) in a couple of ways. Here are some that suit the most in your case :
- Delta data loading from database by using a watermark :
In this case, you define a watermark in your source database. A watermark is a column that has the last updated time stamp or an
incrementing key. - Since you have a SQL based source (staging_table), you can leverage Change Tracking technology. It is a lightweight solution in SQL Server and Azure SQL Database that provides an efficient change tracking mechanism for applications. It enables an application to easily identify data that was inserted, updated, or deleted.
To learn more, please refer this doc on incrementally copying data.
Hope this helps.