I get error when executed the query. Anyone can share how to solve this?declare @intReturnValue intInsert into [ServerName1].[Generic_engineering_Selection].dbo.tbl_Interface_Setting_Label([Component_Name],[Category],[Default_Value],[Enability],[Visibility],[Border_Style],[CSS_Class]) Values ('lblTestType','SPC Facility Data Extraction','* Test Type',1,1,0,'lblStyle') SELECT @intReturnValue=SCOPE_IDENTITY() Insert into [ServerName1].[Generic_engineering_Selection].dbo.tbl_Interface_Setting_Mapping ([Page_ID],[Component_ID],[Category],[Component_Tbl_Name],[Row_No],[Column_No]) Values (12345,@intReturnValue,'SPC Facility Data Extraction','tbl_Interface_Setting_Label',10,1)
(1 row(s) affected)OLE DB provider "SQLNCLI10" for linked server "ServerName1" returned message "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.".Msg 7344, Level 16, State 1, Line 4The OLE DB provider "SQLNCLI10" for linked server "ServerName1" could not INSERT INTO table "[ServerName1].[Generic_engineering_Selection].[dbo].[tbl_Interface_Setting_Mapping]" because of column "Component_ID". The data value violated the integrity constraints for the column.