'Agent XPs' component is turned off as part of the security configuration for this server

来源:互联网 发布:网络运维试题 编辑:程序博客网 时间:2024/04/29 14:49

'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

 

原创粉丝点击