SQL Server execution plans: filter to show bottlenecks?










9















Is there a way to only show items that are greater than 1% of the batch?



I am trying to find bottlenecks in a proc, it contains loops and other logic and 99% of the resulting executing plan I don't care about, but it's hard to scroll through in Management Studio and actually find the parts that slow it down.










share|improve this question




























    9















    Is there a way to only show items that are greater than 1% of the batch?



    I am trying to find bottlenecks in a proc, it contains loops and other logic and 99% of the resulting executing plan I don't care about, but it's hard to scroll through in Management Studio and actually find the parts that slow it down.










    share|improve this question


























      9












      9








      9


      3






      Is there a way to only show items that are greater than 1% of the batch?



      I am trying to find bottlenecks in a proc, it contains loops and other logic and 99% of the resulting executing plan I don't care about, but it's hard to scroll through in Management Studio and actually find the parts that slow it down.










      share|improve this question
















      Is there a way to only show items that are greater than 1% of the batch?



      I am trying to find bottlenecks in a proc, it contains loops and other logic and 99% of the resulting executing plan I don't care about, but it's hard to scroll through in Management Studio and actually find the parts that slow it down.







      sql-server sql-execution-plan






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 19 '11 at 20:25







      user166390

















      asked Sep 19 '11 at 20:23









      CaffGeekCaffGeek

      15.9k1182167




      15.9k1182167






















          2 Answers
          2






          active

          oldest

          votes


















          12














          Have you looked at SQL Sentry Plan Explorer? This is a 100% free tool that can integrate with Management Studio and provides much more clarity when analyzing plans. A very quick example shows how you can quickly focus on the most expensive node(s) in any graphical plan:



          enter image description here



          Download:



          https://sentryone.com/plan-explorer



          There is a demo kit to help others illustrate how much easier execution plans can be with Plan Explorer:



          https://blogs.sentryone.com/aaronbertrand/plan-explorer-3-0-demo-kit/



          Per your actual question, it doesn't hide any low- or zero-cost operations from the plan, but it does highlight the most expensive nodes in red, orange and yellow; we also highlight lookups and scans, and you can also display cost as a % by CPU+I/O, CPU alone, or I/O alone (in SSMS you can only use the combination). Many of the performance issues you're looking for are front and center or on one of the detailed tabs, rather than hidden away in Properties panels, quirky tooltips or not presented at all. In addition to the enhancements to the graphical plan you can also focus on specific statements that happen in a loop (with lots of related but lower-cost statements) by sorting in the Statements Tree node. Differences in estimated vs. actual rows (for actual plans) can highlight potential statistics issues; columns required by a key lookup can identify missing index columns quickly (or a SELECT * query that shouldn't be); and runtime vs. compiled parameters can point out parameter sniffing issues where you may want to use RECOMPILE, OPTIMIZE FOR or turn on "Optimize for ad hoc workloads." Finally, unlike with Management Studio, you can very easily generate runtime metrics (duration, CPU, reads, etc.) by generating an actual plan within the tool - with native tools you need to mess with SET options or use profiler to get these metrics - and even with those you have to discount the work involved with getting the results to the client (Plan Explorer runs the query on the server but discards the results).






          share|improve this answer

























          • +1 for the tool recommendation.

            – Icarus
            Sep 19 '11 at 20:56


















          1














          I just downloaded the latest version of the SSMS Tools Pack Addin today and notice that this now has some new functionality that can also assist in this regard.



          Essentially you can configure a percent and a metric (e.g. overall estimated cost or estimated IO cost) and operators exceeding this threshold are listed to the left of the plan in order of cost and can be clicked on to navigate to the specific operator.



          Screenshot



          See the Execution Plan Analyser screen shots for a better idea.






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f7476867%2fsql-server-execution-plans-filter-to-show-bottlenecks%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            12














            Have you looked at SQL Sentry Plan Explorer? This is a 100% free tool that can integrate with Management Studio and provides much more clarity when analyzing plans. A very quick example shows how you can quickly focus on the most expensive node(s) in any graphical plan:



            enter image description here



            Download:



            https://sentryone.com/plan-explorer



            There is a demo kit to help others illustrate how much easier execution plans can be with Plan Explorer:



            https://blogs.sentryone.com/aaronbertrand/plan-explorer-3-0-demo-kit/



            Per your actual question, it doesn't hide any low- or zero-cost operations from the plan, but it does highlight the most expensive nodes in red, orange and yellow; we also highlight lookups and scans, and you can also display cost as a % by CPU+I/O, CPU alone, or I/O alone (in SSMS you can only use the combination). Many of the performance issues you're looking for are front and center or on one of the detailed tabs, rather than hidden away in Properties panels, quirky tooltips or not presented at all. In addition to the enhancements to the graphical plan you can also focus on specific statements that happen in a loop (with lots of related but lower-cost statements) by sorting in the Statements Tree node. Differences in estimated vs. actual rows (for actual plans) can highlight potential statistics issues; columns required by a key lookup can identify missing index columns quickly (or a SELECT * query that shouldn't be); and runtime vs. compiled parameters can point out parameter sniffing issues where you may want to use RECOMPILE, OPTIMIZE FOR or turn on "Optimize for ad hoc workloads." Finally, unlike with Management Studio, you can very easily generate runtime metrics (duration, CPU, reads, etc.) by generating an actual plan within the tool - with native tools you need to mess with SET options or use profiler to get these metrics - and even with those you have to discount the work involved with getting the results to the client (Plan Explorer runs the query on the server but discards the results).






            share|improve this answer

























            • +1 for the tool recommendation.

              – Icarus
              Sep 19 '11 at 20:56















            12














            Have you looked at SQL Sentry Plan Explorer? This is a 100% free tool that can integrate with Management Studio and provides much more clarity when analyzing plans. A very quick example shows how you can quickly focus on the most expensive node(s) in any graphical plan:



            enter image description here



            Download:



            https://sentryone.com/plan-explorer



            There is a demo kit to help others illustrate how much easier execution plans can be with Plan Explorer:



            https://blogs.sentryone.com/aaronbertrand/plan-explorer-3-0-demo-kit/



            Per your actual question, it doesn't hide any low- or zero-cost operations from the plan, but it does highlight the most expensive nodes in red, orange and yellow; we also highlight lookups and scans, and you can also display cost as a % by CPU+I/O, CPU alone, or I/O alone (in SSMS you can only use the combination). Many of the performance issues you're looking for are front and center or on one of the detailed tabs, rather than hidden away in Properties panels, quirky tooltips or not presented at all. In addition to the enhancements to the graphical plan you can also focus on specific statements that happen in a loop (with lots of related but lower-cost statements) by sorting in the Statements Tree node. Differences in estimated vs. actual rows (for actual plans) can highlight potential statistics issues; columns required by a key lookup can identify missing index columns quickly (or a SELECT * query that shouldn't be); and runtime vs. compiled parameters can point out parameter sniffing issues where you may want to use RECOMPILE, OPTIMIZE FOR or turn on "Optimize for ad hoc workloads." Finally, unlike with Management Studio, you can very easily generate runtime metrics (duration, CPU, reads, etc.) by generating an actual plan within the tool - with native tools you need to mess with SET options or use profiler to get these metrics - and even with those you have to discount the work involved with getting the results to the client (Plan Explorer runs the query on the server but discards the results).






            share|improve this answer

























            • +1 for the tool recommendation.

              – Icarus
              Sep 19 '11 at 20:56













            12












            12








            12







            Have you looked at SQL Sentry Plan Explorer? This is a 100% free tool that can integrate with Management Studio and provides much more clarity when analyzing plans. A very quick example shows how you can quickly focus on the most expensive node(s) in any graphical plan:



            enter image description here



            Download:



            https://sentryone.com/plan-explorer



            There is a demo kit to help others illustrate how much easier execution plans can be with Plan Explorer:



            https://blogs.sentryone.com/aaronbertrand/plan-explorer-3-0-demo-kit/



            Per your actual question, it doesn't hide any low- or zero-cost operations from the plan, but it does highlight the most expensive nodes in red, orange and yellow; we also highlight lookups and scans, and you can also display cost as a % by CPU+I/O, CPU alone, or I/O alone (in SSMS you can only use the combination). Many of the performance issues you're looking for are front and center or on one of the detailed tabs, rather than hidden away in Properties panels, quirky tooltips or not presented at all. In addition to the enhancements to the graphical plan you can also focus on specific statements that happen in a loop (with lots of related but lower-cost statements) by sorting in the Statements Tree node. Differences in estimated vs. actual rows (for actual plans) can highlight potential statistics issues; columns required by a key lookup can identify missing index columns quickly (or a SELECT * query that shouldn't be); and runtime vs. compiled parameters can point out parameter sniffing issues where you may want to use RECOMPILE, OPTIMIZE FOR or turn on "Optimize for ad hoc workloads." Finally, unlike with Management Studio, you can very easily generate runtime metrics (duration, CPU, reads, etc.) by generating an actual plan within the tool - with native tools you need to mess with SET options or use profiler to get these metrics - and even with those you have to discount the work involved with getting the results to the client (Plan Explorer runs the query on the server but discards the results).






            share|improve this answer















            Have you looked at SQL Sentry Plan Explorer? This is a 100% free tool that can integrate with Management Studio and provides much more clarity when analyzing plans. A very quick example shows how you can quickly focus on the most expensive node(s) in any graphical plan:



            enter image description here



            Download:



            https://sentryone.com/plan-explorer



            There is a demo kit to help others illustrate how much easier execution plans can be with Plan Explorer:



            https://blogs.sentryone.com/aaronbertrand/plan-explorer-3-0-demo-kit/



            Per your actual question, it doesn't hide any low- or zero-cost operations from the plan, but it does highlight the most expensive nodes in red, orange and yellow; we also highlight lookups and scans, and you can also display cost as a % by CPU+I/O, CPU alone, or I/O alone (in SSMS you can only use the combination). Many of the performance issues you're looking for are front and center or on one of the detailed tabs, rather than hidden away in Properties panels, quirky tooltips or not presented at all. In addition to the enhancements to the graphical plan you can also focus on specific statements that happen in a loop (with lots of related but lower-cost statements) by sorting in the Statements Tree node. Differences in estimated vs. actual rows (for actual plans) can highlight potential statistics issues; columns required by a key lookup can identify missing index columns quickly (or a SELECT * query that shouldn't be); and runtime vs. compiled parameters can point out parameter sniffing issues where you may want to use RECOMPILE, OPTIMIZE FOR or turn on "Optimize for ad hoc workloads." Finally, unlike with Management Studio, you can very easily generate runtime metrics (duration, CPU, reads, etc.) by generating an actual plan within the tool - with native tools you need to mess with SET options or use profiler to get these metrics - and even with those you have to discount the work involved with getting the results to the client (Plan Explorer runs the query on the server but discards the results).







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 11 '18 at 21:15

























            answered Sep 19 '11 at 20:27









            Aaron BertrandAaron Bertrand

            209k27366407




            209k27366407












            • +1 for the tool recommendation.

              – Icarus
              Sep 19 '11 at 20:56

















            • +1 for the tool recommendation.

              – Icarus
              Sep 19 '11 at 20:56
















            +1 for the tool recommendation.

            – Icarus
            Sep 19 '11 at 20:56





            +1 for the tool recommendation.

            – Icarus
            Sep 19 '11 at 20:56













            1














            I just downloaded the latest version of the SSMS Tools Pack Addin today and notice that this now has some new functionality that can also assist in this regard.



            Essentially you can configure a percent and a metric (e.g. overall estimated cost or estimated IO cost) and operators exceeding this threshold are listed to the left of the plan in order of cost and can be clicked on to navigate to the specific operator.



            Screenshot



            See the Execution Plan Analyser screen shots for a better idea.






            share|improve this answer





























              1














              I just downloaded the latest version of the SSMS Tools Pack Addin today and notice that this now has some new functionality that can also assist in this regard.



              Essentially you can configure a percent and a metric (e.g. overall estimated cost or estimated IO cost) and operators exceeding this threshold are listed to the left of the plan in order of cost and can be clicked on to navigate to the specific operator.



              Screenshot



              See the Execution Plan Analyser screen shots for a better idea.






              share|improve this answer



























                1












                1








                1







                I just downloaded the latest version of the SSMS Tools Pack Addin today and notice that this now has some new functionality that can also assist in this regard.



                Essentially you can configure a percent and a metric (e.g. overall estimated cost or estimated IO cost) and operators exceeding this threshold are listed to the left of the plan in order of cost and can be clicked on to navigate to the specific operator.



                Screenshot



                See the Execution Plan Analyser screen shots for a better idea.






                share|improve this answer















                I just downloaded the latest version of the SSMS Tools Pack Addin today and notice that this now has some new functionality that can also assist in this regard.



                Essentially you can configure a percent and a metric (e.g. overall estimated cost or estimated IO cost) and operators exceeding this threshold are listed to the left of the plan in order of cost and can be clicked on to navigate to the specific operator.



                Screenshot



                See the Execution Plan Analyser screen shots for a better idea.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Sep 25 '11 at 7:35

























                answered Sep 24 '11 at 22:22









                Martin SmithMartin Smith

                345k59580688




                345k59580688



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f7476867%2fsql-server-execution-plans-filter-to-show-bottlenecks%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

                    Edmonton

                    Crossroads (UK TV series)