如何修复错误"SQL Server代理自动停止"?

9 sql-server-2014

我正在使用SQL Server 2014并遇到问题.

在" 任务管理器 "的" 服务"选项卡上,我找到了SQLAgent $ VILLBE_SQLSERVER(VILLBE是我的计算机名),右键单击"开始".

它开始并在1秒钟后停止.

然后,我打开SERVICES.MSC,并启动SQL Server代理(VILLBE_SQLSERVER) .它正在发挥作用.

30秒后,它会自动停止.当我再次点击Start时,它说:

The SQL Server Agent (VILLBE_SQLSERVER) service on Local Computer started and then stopped. Some services stop automatically if they are not in use by other services or programs.
Run Code Online (Sandbox Code Playgroud)

最后,我右键单击SQL Server Agent,选择Properties,将Start up type设置为Automatic并重启我的PC.

重新启动完成后,SQL Server代理仍然停止

其他一些服务:

SQL Server Browser - Running - Automatic (start up)

SQL Server (SQLEXPRESS) - Cannot start within warning: **Windows could not start the SQL Server (SQLEXPRESS) on Local Computer....error code 17058.**
Run Code Online (Sandbox Code Playgroud)

你还能帮我解决这个问题吗?

谢谢!

H. *_*din 16

如果您正在运行SQLEXPRESS,则SQLAGENT不会运行.如果您正在运行SQL2008或SQL2012,可能您更改了SQL SA密码.您可以将SQL Service身份验证从网络服务更改为本地系统,然后手动启动该服务.

  • "如果您正在运行SQLEXPRESS,则SQLAGENT不会运行." 这对我有所帮助.我的SQL Express很好,代理不需要运行. (3认同)