SQL Compare - can I ignore Linked server requirement?

shiftbitshiftbit Posts: 12
edited March 11, 2013 7:29AM in SQL Compare Previous Versions
There is one stored procedure that requires a linked server and the deployment will fail.

I get an error similar to this:

[7391] The operation could not be performed because OLE DB provider "SQLNCLI" for linked server "server name here...." was unable to begin a distributed transaction.
OLE DB provider "SQLNCLI" for linked server "server name here..." returned message "The transaction manager has disabled its support for remote/network transactions.".

Is there a setting to ignore this check, and just apply the changes?

Comments

  • I think I found the option I needed - "Dont use transactions", this let me get past the one problem stored procedure thats using a linked server, but if its not configured on my machine, then the change deployment fails.

    In this casae, Im trying ti update my local instance with the changes in the DB on the server, and to take/override what I have with everything from that instance.
  • Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Thanks for updating us. SQL Compare will not recreate linked servers, as they are server-level objects and outside of the database container.

    Linked server drivers usually have limits on their capability, for instance they may only support certain isolation levels. You can either disable transactions, or the other option is to specify the isolation level. In most cases, READ COMMITTED with do the job and not have to disable transactions entirely.
Sign In or Register to comment.