我使用这些脚本来获取历史记录并得到如图所示的结果 我注意到第一个脚本的结果低于第二个脚本的3行。 实际上,那些缺失的行是我要检查的。 请帮我检查为什么?
SELECT t.[text], s.last_execution_time
FROM sys.dm_exec_cached_plans AS p
INNER JOIN sys.dm_exec_query_stats AS s
ON p.plan_handle = s.plan_handle
CROSS APPLY sys.dm_exec_sql_text(p.plan_handle) AS t
WHERE t.[text] LIKE N'%update MT_customer%'
ORDER BY s.last_execution_time DESC;
SELECT t.[text]
FROM sys.dm_exec_cached_plans AS p
CROSS APPLY sys.dm_exec_sql_text(p.plan_handle) AS t
WHERE t.[text] LIKE N'%update MT_customer%';