TSQL DISABLE TRIGGER 的作用域是调用上下文吗?

发布于 2024-10-10 19:57:18 字数 121 浏览 1 评论 0原文

当作为 TSQL 批处理的一部分发出“DISABLE TRIGGER”时,它的范围是否为批处理的上下文,或者触发器对于任何其他并发查询也可能被禁用?

如果是后者,需要什么样的锁定来确保仅针对发出的查询禁用触发器?

When issueing a "DISABLE TRIGGER" as part of TSQL batch, is it scoped to the context of the batch or perhaps the trigger is disabled as well for any other concurrent query ?

If the later, what kind of locking is required to make sure the trigger is disabled just for the issuing query ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-10-17 19:57:18

它在全球范围内被禁用。不可能仅针对单个连接禁用它。

您可能可以使用的一种技术是将以下内容添加到触发器中

if context_info() =  cast('disabled' as varbinary(128))
return

然后在连接中您想要“禁用”触发器

declare @triggerdisabled varbinary(128) = cast('disabled' as varbinary(128))

set context_info @triggerdisabled

以“重新启用”它使用

set context_info 0x

It is disabled globally. It is not possible to disable it just for a single connection.

One technique you might be able to use is to add the following to your trigger

if context_info() =  cast('disabled' as varbinary(128))
return

Then in the connection you want to "disable" the trigger for use

declare @triggerdisabled varbinary(128) = cast('disabled' as varbinary(128))

set context_info @triggerdisabled

To "re-enable" it use

set context_info 0x
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文