(后台)SQL Server 代理(已禁用代理 XP) 怎么解决(转)

时间:2022-12-02 17:07:33

百度知道搜索的答案:

在SQL Server Management Studio中连接到SQL Server实例后,会显示“SQL Server 代理”节点。如果当前该实例的Agent服务没有启动,“SQL Server 代理”后边就会显示“(已禁用代理XP)”。
解决方法:
Sql代码
sp_configure 'show advanced options', ;
GO
RECONFIGURE WITH OVERRIDE;
GO
sp_configure 'Agent XPs', ;
GO
RECONFIGURE WITH OVERRIDE
GO
sp_configure 'show advanced options', ;
GO
RECONFIGURE WITH OVERRIDE;
GO
sp_configure 'Agent XPs', ;
GO
RECONFIGURE WITH OVERRIDE
GO
配置选项 'show advanced options' 已从 更改为 。请运行 RECONFIGURE 语句进行安装。
配置选项 'Agent XPs' 已从 更改为 。请运行 RECONFIGURE 语句进行安装。
至此问题解决。