Hi, team iam using these query to know the top 10 ...
# general
p
Hi, team iam using these query to know the top 10 cpu intensive processes in my system, but unfortunately it's not working in windows system. so, it there a way to know that in windows? query iam using : SELECT pid, uid, name, ROUND(((user_time + system_time) / (cpu_time.tsb - cpu_time.itsb)) * 100,2) AS percentage FROM processes, (SELECT( SUM(user) + SUM(nice) + SUM(system) + SUM(idle) * 1.0) AS tsb, SUM(COALESCE(idle, 0)) + SUM(COALESCE(iowait, 0)) AS itsb FROM cpu_time ) AS cpu_time ORDER BY user_time + system_time DESC LIMIT 10;