调用存储过程时何时锁定表以进行插入

发布于 2024-12-08 21:06:58 字数 403 浏览 0 评论 0原文

我有一个用于报告目的的表,每次用户从网络运行报告时都会插入数据。根据报告的参数,插入内容可以从单行到几千行不等。用于插入的 select 语句最多可以运行 60 秒。它已经过优化,但由于数据库的复杂性,我无法进一步调整它。我的问题是 - 表何时被锁定以进行插入?是调用存储过程的时候、执行select语句的时候、还是select语句执行完毕的时候?我想限制表的锁定时间,以便在运行最多 50,000 行的大型报表时其他用户不会受到影响。

前任。

INSERT INTO reportTable
SELECT
   Column a,
   Column b
FROM
    Table a
    INNER JOIN
    Table b
       on b.ident = a.Bident

谢谢

I have a table that is used for reporting purposes and data is inserted each time a user runs a report from the web. The insert can vary from a single row to several thousand depending on the parameters of the report. The select statement used for the insert can run for up to 60 seconds for the insert. It has been optimized but due to the complexity of the database i can not tune it further. My question is - when is the table locked for insert? Is it when the stored procedure is called, when the select statement is executed, or when the select statement is finished executing? I would like to limit the time the table is locked so other users are not affected when a large report, up to 50,000 rows, is run.

ex.

INSERT INTO reportTable
SELECT
   Column a,
   Column b
FROM
    Table a
    INNER JOIN
    Table b
       on b.ident = a.Bident

Thank you

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

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

发布评论

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

评论(1

独留℉清风醉 2024-12-15 21:06:58

只需运行此命令即可:

ALTER DATABASE [<dbname>] SET READ_COMMITTED_SNAPSHOT ON;

不再担心插入锁阻塞报告。请参阅选择基于行版本控制的隔离级别

Just run this:

ALTER DATABASE [<dbname>] SET READ_COMMITTED_SNAPSHOT ON;

And stop worrying about insert locks blocking reports. See Choosing Row Versioning-based Isolation Levels.

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