Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

SQL Server User History History

$
0
0

I need to run a query that pulls a user(s) query history to determine long running queries. This information will be pulled every 5-10 minutes and stored in a table for a weekly report to run against showing the top 10 longest running queries.

I was able to find the below query and then add 'SYS.DM_EXEC_SESSIONS' which appears to returning what I need. However, it seems like it's not a history but only active sessions. I definitely need the user name, host name and database as part of the result set.

SELECT r.session_id , s.login_name , s.host_name , r.start_time , TotalElapsedTime_ms = r.total_elapsed_time , r.[status] , s.program_name , r.command , DatabaseName = DB_Name(r.database_id) , r.cpu_time , r.reads , r.writes , r.logical_reads , t.[text] AS [executing batch] , SUBSTRING( t.[text], r.statement_start_offset / 2, ( CASE WHEN r.statement_end_offset = -1 THEN DATALENGTH (t.[text]) ELSE r.statement_end_offset END - r.statement_start_offset ) / 2 ) AS [executing statement] FROM sys.dm_exec_requests r LEFT OUTER JOIN sys.dm_exec_sessions s ON r.session_id = s.session_id CROSS APPLY sys.dm_exec_sql_text(r.sql_handle) AS t CROSS APPLY sys.dm_exec_query_plan(r.plan_handle) AS p ORDER BY r.total_elapsed_time DESC;

So far I was able to pull session information from SYS.DM_EXEC_SESSIONS but I can't seem to find any views to link with for query statistics. The database is SQL Server 2012 SP1.

Any guidance/help would be greatly appreciated.

Thanks, Frank

That is what you are looking for?

SELECT loginame AS LoginName , sqltext.TEXT , req.session_id , req.status , req.command , req.cpu_time , req.total_elapsed_time FROM sys.dm_exec_requests req CROSS APPLY sys.dm_exec_sql_text(sql_handle) AS sqltext JOIN sys.sysprocesses s ON s.spid = session_id;


Viewing all articles
Browse latest Browse all 3160

Trending Articles