SQL 发送HTTP服务问题汇总

本文由  于 2021-3-15 9:59 发布在  SQL    

不支持对系统目录进行即席更新。配置选项'Ad Hoc Distributed Queries&

 

EXEC sp_configure 'allow_updates' 

EXEC sp_configure 'allow_updates',0; 

GO 

RECONFIGURE WITH OVERRIDE;

GO

 

 

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

 

最新评论
网站管理  |  赵猛的个人主页  |  手机版  |  RSS  |  留言建议  |  关于本站  |  联系方式

All Rights Reserved. Powered by emlog Themes by 大智若愚
网站备案号:苏ICP备15011688号-1