Hi can any one help to find the query list which ran from particualar date to dar..
this query return me recent transaction, i need from particular date to date.
SELECT *
FROM sys.dm_exec_query_stats AS deqs
CROSS APPLY sys.dm_exec_sql_text(deqs.sql_handle) AS dest
ORDER BY deqs.last_execution_time DESC
please help on this