Question

Does SentryOne Plan Explorer work as advertised and is it legitimate? Are there any gotchas or something to be concerned about?

It looks like it shows the hot path in color commpared to SSMS's nightmare of a view for the estimated execution plan.

My concerns is - does it modify any data maliciously or otherwise?

edit: I had just heard of it and never heard of the company before.

Was it helpful?

Solution

I use it. It isn't malware.

On the SQL Server forums its one of three useful tools/SSMS plug-ins that are widely used (and thus implicitly reviewed) by the community.

OTHER TIPS

Full disclosure: I work for SentryOne and the entire concept of giving Plan Explorer to the community was one of the motivating factors in my accepting their job offer back in 2010.

Plan Explorer simply presents plan information better than SSMS. Why are you suspicious that it is going to modify data or do anything malicious? What would a reputable company gain from doing anything like that?

When you're looking at a plan, it does nothing at all to your server or your data. It is just interpreting XML and presenting it a little differently. You can read the product page for some of the features, and the user guide where we describe how we improve on the SSMS functionality.

In fact the only way you can get it to do anything to your server is if you generate an estimated or actual plan. And here is what happens in either of those cases:

  • If you generate an estimated plan, it does exactly what Management Studio does when you have a query window and click "Show estimated plan." It sends the Command Text input and retrieves the plan XML output from SQL Server. It also prompts you for credentials every time (unless you opened the plan with the new SSMS add-in that I blogged about yesterday).

  • If you generate an actual plan, the query you specified is sent to the server and executed, and while the plan XML and runtime metrics are retrieved, the query results are simply discarded and not returned to the Plan Explorer UI. You are prompted here as well for credentials, unless you used the add-in, which puts you in the correct connection context.

It's very concerning that you would assume that a free tool must be doing something malicious or would have any reason to modify data. Can you explain your thinking here?

(Some other links showing other reputable community users talking about the tool.)

Plan explorer is a great product, especially for the price, that I use often. SQL Sentry is a great company that wouldn't release mal-ware.

Plan Explorer simply gives you a much, much better way to look at a saved execution plan. You don't need server access to use it, you just need someone to save the execution plan so you can look at it. I've used it to look at execution plans for clients when I don't have any access to their network or SQL Servers. They just email me the plan and I tell them what they need to fix.

It does not do anything to your data (malicious or otherwise). SQLSentry is a very reputable company.

SQLSentry is a reputable company. Their eponymous monitoring software fas won several Readers' and Editors' choice awards from industry publications. It is the primary tool I use as DBA for a hosting provider. I also routinely advise my customers to use Plan Explorer...something that would not be good business if it were malware. It really is just presenting data that is already available via SSMS in a more useful format.

Denismcd

Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top