Hi Wajih Arfaoui,
Thanks for reaching out to Microsoft Q&A.
Disable Columnstore Index:
- Try disabling the columnstore index on the target table before running the copy activity. To do this, drop the columnstore index using the following command. Once done try to rerun and check if you face the same issue.
DROP INDEX [index_name] ON [table_name]
- If the above is not possible, try Merge method instead of upsert(if you use them).
- Did you try using the clustered index?
Please 'Upvote'(Thumbs-up) and 'Accept' as an answer if the reply was helpful. This will benefit other community members who face the same issue.