Home Forums SQL Server 2014 Development - SQL Server 2014 OLE DB provider "SQLNCLI11" for linked server "linkedservername" returned message "The transaction manager has disabled its support for remote/network transactions." RE: OLE DB provider "SQLNCLI11" for linked server "linkedservername" returned message "The transaction manager has disabled its support for remote/network transactions."

  • Your temp table will not be accessible as sp_executesql runs your SQL in a different session then the one you create the temp table in. You would need to make it global ##Myatran. Also enable distributed transaction, RPC and RPC out on the linked server. when you insert from a local table into a table on a linked server, that is a distributed transaction.