Home  >  Article  >  Database  >  sqlserver2005中代理启动成功但显示(已禁用代理xp)的解决方法

sqlserver2005中代理启动成功但显示(已禁用代理xp)的解决方法

WBOY
WBOYOriginal
2016-06-07 15:52:161554browse

明明sql server 2005中启动SQL代理服务,启动正常,但是在sql server 代理还是显示已禁用代理 xp。 解决方法如下 1、启动sql,用windows身份验证或sa进入 2、新建查询 3、在查询窗口执行以下脚本 sp_configure 'show advanced options', 1; GO RECONFIGURE W

明明sql server 2005中启动SQL代理服务,启动正常,但是在sql server 代理还是显示已禁用代理 xp。

解决方法如下

1、启动sql,用windows身份验证或sa进入

2、新建查询

3、在查询窗口执行以下脚本
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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn