Where is the SQL Query Analyzer in SQL Server Management Studio 2012

♀尐吖头ヾ 提交于 2019-12-20 17:31:48

问题


I have some SQL thats getting run and it is taking to long to return the results / parse / display, etc. application.

I have SQL Server Management Studio 2012 installed.but i am not able to find SQL Query Analyser. Any Input will be appreciable.


回答1:


Take a look at this link http://consultingblogs.emc.com/jamiethomson/archive/2008/07/10/query-analyzer-or-management-studio.aspx

The Query Analyzer (QA) was the query tool provided with SQL Server up until SQL Server 2000. In SQL Server 2005 and above it was superseded by SQL Server Management Studio (SSMS). If you would like to detect any performance problems in some of your queries you can use the execution plan to determine what is the culprit.  

  • How to analyze a query : http://technet.microsoft.com/en-us/library/ms191227(v=sql.105).aspx
  • Briefing of how to analyze an execution plan : https://www.simple-talk.com/sql/performance/execution-plan-basics/

Are 2 links which definately can get you going. Also take a look at this introduction to SSMS 2012 which also can be useful https://www.youtube.com/watch?v=YipAwZ3Riok




回答2:


starting from SQL Server 2005, SQL Server Management Studio is the new management tool (Enterprise manager replaced). Thus, the "New Query" tab is the place where you can write down and analyze your queries. You can see the Execution Plan, client data and so on.

SQL Query Analyzer does not exist anymore.



来源:https://stackoverflow.com/questions/24819196/where-is-the-sql-query-analyzer-in-sql-server-management-studio-2012

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!