the following query returns all events with greater than 1000 milliseconds duration from trace.trc file in a table format:
SELECT * FROM ::fn_trace_gettable(‘c:\trace.trc’, default) WHERE Duration > 1000
For more information, see "fn_trace_gettable" in SQL Server Books Online.作者: peag 时间: 2010-11-25 09:00
可以把你用profile检测到的sql语句拿到执行计划去看下,具体那块出问题了就整那块~作者: gaha 时间: 2014-4-25 09:18
\timing,SQL中有类似的开关,每个厂家的开关名称不一样,但是原理一样,打开开关之后,执行SQL后会告诉你执行使用的时间,单位是ms。