Hello @Venkatachalam Selvakumar ,@Prem
Thanks for the ask and using the Microsoft Q&A platform .
Question 1:
The FK voilation is not a supported scernario , please do read more about the same here .
As a workaround , copy all the data from the source to sink in a staging table ( since this is not having FK constarint defined so it will just work fine . ) . Once the records are copied to the use one more copy activity and in the source use the query option and right a query like .
select * from your stagedtable A
JOIN TablewithFKReference B
A.somecol1 = B.somecol2
and it should work .
Please do let me know how it goes .
Thanks
Himanshu
Please do consider clicking on "Accept Answer" and "Up-vote" on the post that helps you, as it can be beneficial to other community members