(在数据库中调用webservices。)SQL Server 阻止了对组件 'Ole Automation Procedures' 的 过程'sys.sp_OACreate&

Posted 何以平天下

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(在数据库中调用webservices。)SQL Server 阻止了对组件 'Ole Automation Procedures' 的 过程'sys.sp_OACreate&相关的知识,希望对你有一定的参考价值。

--开启 Ole Automation Procedures

sp_configure ‘show advanced options‘, 1;

GO

RECONFIGURE;

GO

sp_configure ‘Ole Automation Procedures‘, 1;

GO

RECONFIGURE;

GO

EXEC sp_configure ‘Ole Automation Procedures‘;

GO

--关闭 Ole Automation Procedures

sp_configure ‘show advanced options‘, 1;

GO

RECONFIGURE;

GO

sp_configure ‘Ole Automation Procedures‘, 1;

GO

RECONFIGURE;

GO

EXEC sp_configure ‘Ole Automation Procedures‘;

GO

--关闭高级选项

sp_configure ‘show advanced options‘, 0;

GO

RECONFIGURE;

GO

以上是关于(在数据库中调用webservices。)SQL Server 阻止了对组件 'Ole Automation Procedures' 的 过程'sys.sp_OACreate&的主要内容,如果未能解决你的问题,请参考以下文章

如何在ORACLE存储过程中调用WEBSERVICE函数

.net webservice 设置编码

java如何在sqlserver触发器里面调用webservice接口

SQL Server 2008 R2 根据WSDL访问WebService

ORA-29270:从pl / sql过程调用webservice时,有太多打开的HTTP请求

sharepoint2010中的webservice 怎么在webpart 中调用