sql server 最近执行语句统计查询分析
查询语句:
select * from (
SELECT [RowNumber],DATEDIFF(second, StartTime, isnull(EndTime ,StartTime)) 执行时间 ,[StartTime]
,[EventClass]
,[TextData]
,[ApplicationName]
,[NTUserName]
,[LoginName]
,[CPU]
,[Reads]
,[Writes]
,[Duration]
,[ClientProcessID]
,[SPID]
,[EndTime]
,[BinaryData]
FROM [master].[dbo].[无标题 - 2]
) t
order by 执行时间 desc