When doing the comparison, how to specify that my unique keys are going to be 2 columns?
1 column can have the same value in multiple rows, but there can not be two rows with the same value in the two columns.
Example:
This can happen
1 | apple | red |
2 | apple | green |
This can not happen
1 | apple | red |
2 | apple | red |
So in order to check which row has changed and update it or leave It unchanged, I need to specify two unique keys in ChangeDetector.
I have specified the two columns in *Update Detection Key Attributes* but not working as expected
May you advise?
Thanks