Distributed transaction error?

后端 未结 2 802
青春惊慌失措
青春惊慌失措 2020-12-03 13:06

In stored procedure I am using below statements. But it throwing Distributed transaction error when I ran Stored Proc.

Declare @res int
    Declare @mes as v         


        
2条回答
  •  执笔经年
    2020-12-03 13:27

    Enable the options

    • Allow Remote Clients
    • Allow Outbound

    On Security tab of Local DTC Properties in Component Services.

    • Go To Run, type comexp.msc.
    • Double click "Console Root".
    • Double click "Component Services.
    • Double click "Computers".
    • Double click "My Computer".
    • Double click "Distributed Transaction Coordinator".
    • Right click "Local DTC" under "Distributed Transaction Coordinator", and click properties.
    • Click the "Security" tab.
    • Put tick marks on the checkboxes "Allow Remote Clients" and "Allow Outbound".

提交回复
热议问题