SQL Server performance with many concurrent, long-running queries

前端 未结 5 1218
时光取名叫无心
时光取名叫无心 2021-02-02 01:32

I\'m wondering how executing many long-running queries simultaneously will impact SQL Server\'s ability to service each query in a timely fashion.

[Edit]

5条回答
  •  一向
    一向 (楼主)
    2021-02-02 02:13

    obviously, the more queries running, the slower performance will be.

    the extent will depend on the data and what kind of queries (updates/deletes/inserts?).

    queries that lock tables may be particulary problematic; use of nolock where appropriate may improve performance.

提交回复
热议问题