Find Recently Run Queries

Bradley Schacht is a Principal Program Manager on the Microsoft Fabric product team based in Saint Augustine, FL. Bradley is a former consultant, trainer, and has coauthored 6 SQL Server and Power BI books, most recently Learn Microsoft Fabric. As a member of the Microsoft Fabric product team, Bradley works directly with customers to solve some of their most complex data problems and helps shape the future of Microsoft Fabric. Bradley gives back to the community through speaking at events such as the SQLBits, Fabric Community Conference, PASS Community Data Summit, SQL Saturdays, Code Camps, and user groups across the country including locally at the Jacksonville SQL Server User Group (JSSUG). He is a contributor on SQLServerCentral.com and blogs on his personal site, BradleySchacht.com.
If you have ever closed a query window by accident only to wish you could get back your work an instant later you may be in luck. If you ran the query in question there is hope for you. The query below will return queries that have been run for you including the time and query text. I haven't figured up a way to get the user that executed the query just yet. So if you have that tidbit to add to this so you can filter a little easier please let us know. You can narrow the list by adding a where clause and searching for some text you know was in the query or looking around a specific time period. The text wont be formatted pretty when you copy it, but reformatting is better than rewriting! Without further ado, here is the magic: SELECT a.last_execution_time AS ExectuionTime, b.text AS Query FROM sys.dm_exec_query_stats a CROSS APPLY sys.dm_exec_sql_text(a.sql_handle) b ORDER BY a.last_execution_time DESC