0

执行 SQL 查询时,我的应用程序出现问题。我附加了 SQL Profiler 来查看问题。

像这样的查询

SELECT abc_id 
FROM abc_Master 
WHERE abc_name = @abcName COLLATE SQL_Latin1_General_CP1_CS_AS 
  AND (status=''active'' OR status=''live'')

执行需要 60.102 秒。

我注意到服务器探查器跟踪列表中此查询日志上方的审核登录日志记录。

-- network protocol: TCP/IP
set quoted_identifier on
set arithabort off
set numeric_roundabort off
set ansi_warnings on
set ansi_padding on
set ansi_nulls on
set concat_null_yields_null on
set cursor_close_on_commit off
set implicit_transactions off
set language us_english
set dateformat mdy
set datefirst 7
set transaction isolation level read committed

这是造成延迟吗?为什么查询需要 60 秒才能执行?

4

0 回答 0