I need to execute same command in different server using linked-server.
INSERT #Result
EXEC ('command') AT @linked_server
Because Insert statement opens an Implicit transaction and I can not enable DTC(Distributed transaction control) the following error will occur:
The operation could not be performed because OLE DB provider "MSOLEDBSQL" for linked server "RM-BIEDW" was unable to begin a distributed transaction.
Is there any solution other than enabling DTC?