Distributed Transaction on Linked Server between sql server and mysql

后端 未结 2 964
星月不相逢
星月不相逢 2020-12-18 02:21

I have a table say Table1 on SQL Server 2014 and MySQL both.

Table1
ID INT,Code VARCHAR(100)

I created a linked server M

2条回答
  •  一个人的身影
    2020-12-18 02:36

    As on SQL 2014, you could have configured the linked server not to enlist in a distributed transaction. Although you could try adding "Enlist=false" in the @provstr argument to sp_addlinkedserver

提交回复
热议问题