Skip to content

Instantly share code, notes, and snippets.

@HenrikHoyer
Created March 21, 2014 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HenrikHoyer/9681053 to your computer and use it in GitHub Desktop.
Save HenrikHoyer/9681053 to your computer and use it in GitHub Desktop.
Show last statements executed on an sql server
SELECT execquery.last_execution_time AS [Date Time], execsql.text AS [Script] FROM sys.dm_exec_query_stats AS execquery
CROSS APPLY sys.dm_exec_sql_text(execquery.sql_handle) AS execsql
ORDER BY execquery.last_execution_time DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment