【SQLServer】Server ‘SERVERNAME’ is not configured for RPC
I recently was doing some development on my local machine and needed to pull data from a linked server. I set up the linked server and everything was working great. Executing queries to pull the data to my machine was fine, but a problem arose when I needed to execute a stored procedure from the other server.
First of all, to call a stored procedure from a linked server you need to use a four part qualifier.
EXEC ServerName.DatabaseName.Owner.StoredProcedure PARAMETERS
Using AdventureWorks2008 on the server MYPROD would look like this:
EXEC MYPROD.AdventureWorks2008.dbo. uspGetBillOfMaterials 1, ‘01/01/2008’
The error I ran into when I tried to execute the stored procedure was this: ‘Server ‘SERVERNAME’ is not configured for RPC.’ There could be a couple of issues with this. The easiest one to check is to see if the linked server was configured to allow RPC. If you open the linked server properties and go to the Server Options tab, there is an option for RPC and RPC Out. RPC Out needs to be set to True in order to execute a stored procedure that is stored on the linked server. RPC allows stored procedure call from the linked server whereas RPC Out allows stored procedure calls to go out to the linked server.
The other thing to check is if the server is even configured to allow RPC. To check this run sp_helpserver and it will display a list of settings in the STATUS column. If you do not see RPC, RPC Out listed there they are not enabled and setting your linked server up correctly won’t help the situation any. If they are not listed and you would like to enable them the following commands will do that. Again, using our MYPROD server example:
exec sp_serveroption @server=’Linkserver_name’, @optname=’rpc’, @optvalue=’TRUE’;
exec sp_serveroption @server=’Linkserver_name’, @optname=’rpc out’, @optvalue=’TRUE’;
From now on, as long as everything is configured correctly, you will be able to execute stored procedures to and from linked servers.
Reprinted from :
http://www.bradleyschacht.com/server-servername-is-not-configured-for-rpc/
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30776559/viewspace-2148161/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL 5.6.19主從server-id不生效,The server is not configured as slaveMySqlServer
- RPC:authentication error:why = server rejected credentialRPCErrorServer
- Apache 虛擬主機裡的 ServerName 指令ApacheServer
- Sqlserver 如何truncate linked server的表SQLServer
- sql server日期格式 sqlserver的日期格式SQLServer
- Linux中配置Aria2 RPC ServerLinuxRPCServer
- No CurrentSessionContext configuredSessionContext
- sqlserver建立linked server到redshift的方法SQLServer
- 【SQLServer】linked server "" was unable to begin a distributed transaction.SQLServer
- Xamarin基礎名稱空間Microsoft.SqlServer.ServerROSSQLServer
- sqlserver採用link server方式遠端連線ORACLESQLServerOracle
- hadoop原始碼解讀——ConfiguredHadoop原始碼
- SQL Server之旅(11):簡單說說sqlserver的執行計劃SQLServer
- RPCRPC
- [RPC]RPC
- Poster stopped: message is larger than configured max size
- Elasticsearch NoNodeAvailableException None of the configured nodes are availableElasticsearchAIExceptionNone
- Error: The cluster is not configured or is not running on node NODE_NAMEError
- Checking monitor:must be configured to display at least 256 colorsAST
- windows server 2012搭建sqlserver 2008經驗總結WindowsServerSQL
- Go RpcGoRPC
- PoS RPCRPC
- 生成 rpcRPC
- 什麼樣的RPC才是好用的RPCRPC
- .NET輕量級RPC框架:Rabbit.RpcRPC框架
- Spring Boot Configuration Annotation Processor not configuredSpring Boot
- already configured and will be running under init(1M)
- SQLServer 2017 install for Windows server 2012_問題彙總SQLServerWindows
- Sql Server之旅——第十一站 簡單說說sqlserver的執行計劃SQLServer
- golang RPC 應用(1) :net/rpc的應用GolangRPC
- 螞蟻 RPC 框架 SOFA-RPC 初體驗RPC框架
- SQLServer異常:傳入的表格格式資料流(TDS)遠端過程呼叫(RPC)協議流不正確。SQLServerRPC協議
- RPC的概述RPC
- RPC詳解RPC
- RPC簡述RPC
- Rpc Call ProxyRPC
- mq和rpcMQRPC
- RPC介紹RPC