I have the developers complaining that their report is running very slow and when I run sp_who2 and run the SQL Profiler it shows that there is a lots of blocking caused by some system queries. How can I fix this issue now? Can somebody please give me idea.
Thanks,
Reasons :
Many SQL Jobs running in your SQL Server where you extracting data
Query is not Optmize
Solution :
Stop SQL Jobs running in your SQL Server that you do not use
Optimize your Query in your SP to make it more faster and use CTE’s.
Regards