gpt4 book ai didi

c# - SQL Server 阻止访问组件 'sys.sp_OACreate' 的过程 'Ole Automation Procedures'

转载 作者:IT王子 更新时间:2023-10-29 04:05:10 28 4
gpt4 key购买 nike

SQL Server blocked access to procedure sys.sp_OACreate of component 'Ole Automation Procedures' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Ole Automation Procedures' by using sp_configure. For more information about enabling 'Ole Automation Procedures', see "Surface Area Configuration" in SQL Server Books Online.

我尝试启用 Ole 自动化程序:

sp_configure 'show advanced options', 1 

GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1
GO
RECONFIGURE;
GO
sp_configure 'show advanced options', 1
GO
RECONFIGURE;

当我执行查询时,我成功地获得了输出。但是当尝试通过 Windows 窗体时,我收到了这个错误。请帮助我

最佳答案

以下示例显示如何查看 OLE 自动化过程的当前设置。

EXEC sp_configure 'Ole Automation Procedures';
GO

以下示例显示如何启用 OLE 自动化过程。

sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Ole Automation Procedures', 1;
GO
RECONFIGURE;
GO

关于c# - SQL Server 阻止访问组件 'sys.sp_OACreate' 的过程 'Ole Automation Procedures',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28052815/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com