I have a dataflow that upserts data into an existing table.
I have set a unique key, which should be used to detect if a record already exists, and if so, it should be updated.
However, the flow does not run succesfully, because it complains the key already exists...
the (Dutch) error message translates to: A record with the attribute values xxxxxxx already exists. The entity key xxxxxxxxx requires this set of attributes to contain unique values. Please select unique values and try again.
So, it does detect that the key already exists, but it somehow does not update this record...
Any idea why this update is not working?