Created
June 21, 2019 01:55
-
-
Save sskset/838cc0d515a0de6f9d761bf7f00ecc67 to your computer and use it in GitHub Desktop.
enable sql server rpc and disable distributed transaction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Enable RPC calls | |
EXEC sp_serveroption Logging, 'RPC OUT', 'TRUE' | |
-- disable distributed transaction | |
EXEC sp_serveroption Logging, 'remote proc transaction promotion', 'FALSE' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment