Tagged Questions

4
votes
2answers
262 views

MS SQL DMVs for UDF performance stats - how to find top 10 worst UDFs

I heard in Microsoft SQL Server there are multiple ways to find "worst" stored procedures: by number of executions, by CPU worker time, by queue wait time etc. I am looking for a way to find worst ...
0
votes
0answers
67 views

How to find the detail cpu high process name which occupying most resource in the SQL Server database?

I'm running into a problem when using the following SQL to identify CPU usage in the production SQL Server 2005 env. DECLARE @ts_now bigint; SELECT @ts_now = cpu_ticks / CONVERT(float, ...