'Agent XPs' because this component is turned off as part of the security configuration for this server. A system administrator can enable the use of 'Agent XPs' by using sp_configure. For more information about enabling 'Agent XPs', see "Surface Area Configuration" in SQL Server Books Online"
To turn on Agent XP's by running this script:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'Agent XPs', 1;
GO
RECONFIGURE
GO
本文提供了一步一步的指南,说明如何通过运行特定脚本来开启AgentXPs组件,这是服务器安全配置的一部分。包括使用sp_configure命令来启用高级选项和AgentXPs功能。
1561

被折叠的 条评论
为什么被折叠?



