SQL 2008 无法终止进程
我有一个包含以下信息的进程,我执行kill进程来杀死这个id,它返回给我“只能杀死用户进程”。
SPID:11
Status:BACKGROUND
Login:sa
HostName: .
BlkBy: .
DBName: SAFEMIG
Command:CHECKPOINT
通常,所有登录到该服务器的会话都应该有一个显示我们的PC名称的HostName,但是这个连接是带点的,所以不确定谁正在执行具有此连接的进程。
我执行dbcc inputbuffer(11)
它返回我“EventType= No Event,Parameters = 0 and EventInfo=Null”
感谢有关此问题的任何帮助\建议!
I have a process with the following information, and i execute the kill process to kill this id, and it return me "Only user processes can be killed."
SPID:11
Status:BACKGROUND
Login:sa
HostName: .
BlkBy: .
DBName: SAFEMIG
Command:CHECKPOINT
Normally, all the session to login to this server, it should have a HostName which display our PC name, but this connection is with a dot, so not sure who is executing what process that have this connection.
I execute dbcc inputbuffer(11)
It return me"EventType= No Event, Parameters = 0 and EventInfo=Null"
Appreciate for any help\advice on this problem!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个内部系统进程,它处理对数据库文件的写入更新;它不会让你杀死它,因为它对于 SQL Server 的工作至关重要。
That's an internal system process, it handles writing updates to the database files; it won't let you kill it since it is vital for the workings of SQL server.