Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool to Analyze SQL Server performance [closed]

Is there any 3rd party tool which works like another layer on top of SQL Server, which can analyze the behaviour of the database and make recommendations based on that?

Thanks

like image 277
D_D Avatar asked Jul 21 '11 12:07

D_D


People also ask

Which tool is used for SQL Server performance monitoring?

The Performance Dashboard in SQL Server Management Studio helps to quickly identify whether there is any current performance bottleneck in SQL Server.

How can check database performance in SQL Server?

Remember, the SQL Server Profiler can be initialized from Activity Monitor as well, just click the Processes pane, right-click the process that you want to profile, and then from the right-click context menu choose the Trace Process in SQL Server Profiler option.


2 Answers

Qure from DBSophic does a great job at what you describe. You can also bundle it with our tools (for a much more cost effective offering), SQL Sentry Event Manager and Performance Advisor, which provide general around the clock performance monitoring and alerting (these tools are mostly for use by DBAs, and don't provide automatic optimizations the way Qure can).

http://www.dbsophic.com/

http://www.sqlsentry.net/

https://sqlblog.org/2011/04/21/using-qure-workload-optimizer-for-sql-sentry

like image 115
Aaron Bertrand Avatar answered Sep 23 '22 03:09

Aaron Bertrand


Late answer but can be helpful to other readers, I hope

In addition the solutions already mentioned, I can recommend ApexSQL Monitor This tool will allow you to define custom metrics you want to track (in addition to numerous predefined metrics for the System, SQL Server and Database).

ApexSQL Monitor can also show the slowest queries executing on the SQL Server. It stores individual wait statistics for the single query, and by analyzing waits, you can detect the reasons of slow performing queries. It can also show the query execution plan at the time of execution, which will provide you even more info about slow executing queries.

like image 22
Mike Overton Avatar answered Sep 25 '22 03:09

Mike Overton