Management Studio - Query History

Geçmişe yönelik çalıştırılan kodları bulma sql komutu.

SELECT t.[text], s.last_execution_time,s.*
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'%SQL%'
ORDER BY s.last_execution_time DESC;

Bu makaleyi yararlı buldunuz mu?