sql-server – SqlQueryNotificationStoredProcedure的错误填写了Sql Server日志

前端之家收集整理的这篇文章主要介绍了sql-server – SqlQueryNotificationStoredProcedure的错误填写了Sql Server日志前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的sql Server日志正在快速填满错误消息,如下所示:

The activated proc
‘[dbo].[sqlQueryNotificationStoredProcedure-b65a194e-e29f-4ba0-8f5a-79f0875bd609]’
running on queue
‘MyDatabase.dbo.sqlQueryNotificationService-b65a194e-e29f-4ba0-8f5a-79f0875bd609’ output the following: ‘Cannot execute
as the database principal because the
principal “dbo” does not exist,this
type of principal cannot be
impersonated,or you do not have
permission.’

这些消息引用的任何存储过程都不存在。

问题类似于here所述。该文章提到这个问题应该已经在2008 SP1被修复,但是我已经在运行SP1。

如果我运行以下命令…

select * from sys.service_queues

…我注意到有很多排队的项目,如sqlQueryNotificationService-f944d750-8530-4762-adcf-6948e8da991f。

但是如果我尝试使用以下命令杀死这些命令…

drop queue [sqlQueryNotificationService-78f5b757-45f0-4a4d-83f5-91e1d7e46294]

…我收到一条错误消息:队列’sqlQueryNotificationService-78f5b757-45f0-4a4d-83f5-91e1d7e46294’不能被删除,因为它绑定到一个或多个服务。

解决方法

Cannot execute as the database
principal because the principal “dbo”
does not exist,this type of principal
cannot be impersonated,or you do not
have permission.

你必须首先解决这个问题:

ALTER AUTHORIZATION ON DATABASE::<dbname> TO [sa];

现在,如果你想知道会发生什么,我推荐一些文章在我的博客The Mysterious NotificationWhen it rains,it pours.在你的情况下,问题是两个折叠:

>导致数据库与孤立dbo的管理错误。这通常是由Windows SID从不相关的权限(即,不同的计算机上的本地帐户)创建的数据库的附加/还原的结果。
>在sqlDependency的起诉中的编码错误,因为代码在完成时省略调用Stop(),因此无法拆除sqlDependency临时基础设施。

通常,sqlDependency临时基础设施的激活过程将删除临时队列/服务/过程,但是在您的情况下,由于孤立的dbo废止所有事情,激活无法运行。

一旦修复了孤立的dbo(通过在我的帖子开始时运行ALTER),激活的程序将能够运行,它们将清除所有临时队列,服务和过程。

原文链接:https://www.f2er.com/mssql/84549.html

猜你在找的MsSQL相关文章