Server is not configured for RPC

邮差的信 提交于 2021-02-18 23:46:27

问题


Looking for my job history I foudn the error below:

06/18/2018 00:00:01,MBS_Lojas_ExportaMR_OutrasLojas,Error,1,WIN-VRT-01\SQL2008,MBS_Lojas_ExportaMR_OutrasLojas,Passo1,,Executed as user: WIN-VRT-01\integracao. Server 'x.y.z' is not configured for RPC. [SQLSTATE 42000] (Error 7411).  The step failed.,01:11:15,16,7411,,,,0

I have this linked server with the option RPC and RPC Out with the values assigned to true.

In the job I have this

EXEC master.dbo.sp_serveroption @server=N'x.y.z', @optname=N'rpc', @optvalue=N'true'
EXEC master.dbo.sp_serveroption @server=N'x.y.z', @optname=N'rpc out', @optvalue=N'true'

I can't find out why is this happening and none of the solutions posted for this error could help me to debug this issue.


回答1:


I made RPC and RPC out fields as True (as shown in the image below). Logged out of SSMS and logged back in and it worked.




回答2:


You need to enable RPC Out in Linker Server Properties on the Calling Server.

Don't enable RPC unless you want the linked server to be able to make calls to your server.



来源:https://stackoverflow.com/questions/50907968/server-is-not-configured-for-rpc

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!