解决方法:
SQL代码
sp_configure ''show advanced options'', 1  
Go  
RECONFIGURE  
GO  
sp_configure ''Agent XPs'', 1  
GO  
RECONFIGURE  
GO
sp_configure ''show advanced options'', 1
GO
RECONFIGURE
GO
sp_configure ''Agent XPs'', 1
GO
RECONFIGURE
GO
这是帮助文档给出的答案,详细可查看http://msdn.microsoft.com/zh-cn/library/ms178127.aspx
但是当执行上面的语句,却报错:“不支持对系统目录进行即席更新。”
在网上找了下,终于找到答案,sql如下:
Sql代码
sp_configure ''show advanced options'', 1  
GO  
RECONFIGURE WITH OVERRIDE   加上WITH OVERRIDE  
GO  
sp_configure ''Agent XPs'', 1  
GO  
RECONFIGURE WITH OVERRIDE     加上WITH OVERRIDE  
GO
sp_configure ''show advanced options'', 1
GO
RECONFIGURE WITH OVERRIDE   加上WITH OVERRIDE
GO
sp_configure ''Agent XPs'', 1
GO
RECONFIGURE WITH OVERRIDE     加上WITH OVERRIDE
GO
配置选项 ''show advanced options'' 已从 1 更改为 1。请运行 RECONFIGURE 语句进行安装。
配置选项 ''Agent XPs'' 已从 0 更改为 1。请运行 RECONFIGURE 语句进行安装。
至此问题解决。
摘于https://blog.csdn.net/fin86889003/article/details/62215544