使用 SQL Server 2005 进行 ASP.NET 中的会话管理
我在执行 InstallSqlSate.sql
文件时收到以下错误
消息 14261,级别 16,状态 1,过程 sp_add_category,第 32 行
指定的@name('[未分类(本地)]')已存在。SQLServerAgent 当前未运行,因此无法收到通知 这个动作。
我想了解该错误是什么以及如何修复它的详细信息?
I am getting the following error while executing InstallSqlSate.sql
file
Msg 14261, Level 16, State 1, Procedure sp_add_category, Line 32
The specified @name ('[Uncategorized (Local)]') already exists.SQLServerAgent is not currently running so it cannot be notified of
this action.
I want details about what is that error and how to fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
InstallState.sql 不适合直接运行。请改用 aspnet_regsql.exe。
InstallState.sql is not intended to be run directly. Use aspnet_regsql.exe instead.
我在 SQL2000 中也遇到了同样的问题。可能适用于 2005 年。
我的没有运行,它被“禁用”了。如果您遇到这种情况:右键单击“属性”,将其从“禁用”更改为“自动”。按确定。然后右键单击SQL Server代理服务并单击“启动”。它应该更改为“正在运行”状态。
来自:https://support.microsoft.com/en-us/kb/911841
I had the same issue in SQL2000. Might work for 2005.
Mine was not running, it was "disabled". If this is the case for you: Right click properties, change it from disabled to Automatic. Press OK. Then right click the SQL Server Agent service and click "Start". It should change to have the "Running" status.
from: https://support.microsoft.com/en-us/kb/911841