使用 Django 模型查询时如何确保像 NOLOCK 这样的 SQL

发布于 2024-12-29 02:08:57 字数 437 浏览 0 评论 0原文

我有一个 Django 模型“用户”绑定到现有的 MS SQL Server 数据库表。我正在阅读该表:

Users.objects.filter(userid='xyz').filter(status='active')

我想知道这会转换成什么锁定结构,例如,这种读取会锁定表吗?在 SQL 中我会这样做:

SELECT * from users (nolock) where userid='xyz' and status='active'

有没有办法通过 Django 模型查询显式指定“nolock”?

在 Django 以及 django-pyodbc 文档中进行了大量搜索,但没有成功。

谢谢。

ps:使用 django-pyodbc 和 pyodbc 驱动程序

I have a Django Model "Users" tied to an existing MS SQL Server database table. I am reading the table thus:

Users.objects.filter(userid='xyz').filter(status='active')

I want to know what locking constructs would this translate to, as in, would this sort of a read Lock the table? In SQL I would have done:

SELECT * from users (nolock) where userid='xyz' and status='active'

Is there a way to explicitly specify a "nolock" via Django Model queries?

Searched a lot in the Django as well as django-pyodbc documentation without any success.

Thanks.

p.s.: Using django-pyodbc and pyodbc drivers

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

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

发布评论

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

评论(1

鹤仙姿 2025-01-05 02:08:57

您可以创建一个视图:

create view dbo.vw_Users
as
select  col1
,       col2
,       ...
from    dbo.Users with (nolock)

并让 Django 从视图而不是表中读取。

You can create a view:

create view dbo.vw_Users
as
select  col1
,       col2
,       ...
from    dbo.Users with (nolock)

And have Django read from the view instead of the table.

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