I have an adf pipeline that uses copy data activity for copying data from blob storage to table storage. This pipeline runs on a trigger once every day. I'm curious to know how this copy data activity actually works. During pipeline run, does it clear the table and copy data from blob to table or does it just add any updated rows to table after comparison?
For example:
After 1st run, table contains below rows:
Row1 xyz 1
Row2 abc **2**
Now let's say rows in blob are updated as follows:
Row1 xyz 1
Row2 abc **5**
During 2nd run, does it clear table and store the above data or only update Row2 with values abc and "5" instead of "2"