SlideShare a Scribd company logo
Performance Tuning: Intro to
  Execution Plan Analysis
    Presented by Kon Melamud
About me
• SQL Server Team Lead for RDX
• Lead code tuning team within RDX
• RDX works with over 200 customers on
  solutions within the SQL Server environment
  world wide.
Introduction to execution plan analysis
Introduction to execution plan analysis
Divide and conquer approach
• Eliminating non-problem areas
  –   Hardware - memory, CPU
  –   Disk/SAN performance
  –   Maintenance Tasks - index/statistics maintenance
  –   Other Applications on server causing performance bottleneck

      For more information on tools and techniques used to identify
      problem areas check out John Sterrett’s presentation, Performance
      tuning for Pirates, http://bit.ly/P3h5Hf
Objectives
• Execution plans
  – Additional tools
  – Things to check before start of analysis
• Indexes used by the SQL optimizer
  – Different type of index operations
  – Best practices
  – Determine what indexes are the optimal ones and the exceptions to
    the rules
• Join operations
  – Different join type and how they work
  – Exceptions to the general best practices
Execution Plans in a glance
• How to view an execution plan
  –   Profiler
  –   DMVs
  –   Extended Events (SQL2008+ only)
  –   Ad hoc queries

• Different views of execution plans
  – Graphical view
  – XML view
  – Text view
Before we begin…
• Additional query options (STATISTICS IO/TIME)
• Check optimization levels
• Check if optimizer timed out during plan
  generation
• How to regenerate a plan
• Right-to-left approach
Index Operations
• Four different base table operations
  –   Table Scan
  –   Index Scan - clustered/non-clustered
  –   Index Seek - clustered/non-clustered
  –   Lookups - RID/Key
Index Operations – Table Scans
• Table Scan – Heap (no clustered index)
    –   Generally not a best practice for data retrieval

• When Table Scans Are Acceptable
    –   Small tables
    –   Table variables
    –   CTE functionality
    –   Heavily inserted tables, minimal selects/updates/deletes
Index Operations – Index Scans
• Clustered Index Scans
    –   Same as a table scan but table is sorted on disk
    –   Generally slightly better than heap operations for CPU usage
    –   Query could most likely benefit from different index
    –   Could also mean the large range of data is been selected
Index Operations – Index Scans
• Non-Clustered Index Scan
   –   Less data scanned than a clustered index
   –   Causes for non-clustered index scan
          • Not an optimal index for the query
          • Seek predicate is not SARGable
          • Dataset returned represents most of the table
Index Operations – Index Seeks
• Clustered Index Seek
    –   Most preferred method for data retrieval
    –   Downside, only one clustered index can exist on the table
Index Operations – Index Seeks
• Non-Clustered Index Seek
   –   As good as clustered index seek
   –   Upside, can have multiple non-clustered indexes
   –   Downside, over indexing tables can cause slowdowns on
       writes
Index Operations - Lookups
• Lookups – What are they?
  – Only on non-clustered index operations
  – RID Lookup (Heap) - no clustered index present
  – Key Lookup (Clustered) - clustered key lookup

• Eliminating lookups
  – Pre SQL2005, create covering indexes
  – SQL2005 and later, INCLUDED columns option

• Exceptions to eliminating lookups
  – Select every column from the table
Index Operations - Lookups
RID Lookup      Key Lookup
Join Operations
• Three main logical join operators
  – Hash join
  – Nested Loop join
  – Merge join
Join Operations – Hash Join
• Hash joins - How it works…
  – Two phases - build phase, probe phase
      • Build phase - Scans or computes build input and builds hash table in memory (if
        possible)
      • Probe phase - For each row of probe input hash value is build or computed than
        compared against hash bucket of the build input, either producing matches or not
  – Requires at least one equality statement
  – Performed when at least one side of the join is not properly indexed
    (index scan/table scan)
  – Most common join operation
Join Operations – Hash Join
Graphic Look:
Join Operation – Nested Loop
• Nested loop join – How it works
  – Also called nested iteration, builds two inputs - inner and outer input
     • Outer input (displayed on top in the execution plan)
           – Processes row by row against inner output
           – A smaller table in the join predicate
      • Inner input (on the bottom of the execution plan)
           – Scanned for every row of the outer input to produce matches
           – A larger table of the two participating in the join
           – Has to be properly indexed ( index seeks)
  – Usually used when one table in the join is relatively small and the
    other is rather large, and at least one table (larger) is properly indexed.
     • If those conditions are met generally outperforms hash join
       operations
Join Operation – Nested Loop

 Graphic Look:
Join Operations - Merge
• Merge join – How it works
  – Both tables participated in the join must be sorted on the join
    columns. If that condition is not met, merge join operation would
    require an explicit sort which could be very costly.
  – Both inputs are scanned once at the same time, one row at a time,
    and if the rows are not matched, the row is discarded. Since both
    inputs are sorted, we can guarantee we will not see another possible
    match.
Join Operations - Merge Join
Graphic Look:
Parallelism – Good or Bad?
• SQL Server Optimizer determines when to use
  – Can be seen in execution plan as one of three exchange operators
      • Distribute Streams
      • Repartition Streams
      • Gather Streams
  – When parallel execution is not an option
      • The query contains scalar or relational operators that cannot be run in parallel
      • Sequential cost of the query is not high enough
      • Sequential execution is faster than parallel
  – Cost threshold of parallelism and MAXDOP options
Parallelism -
Graphical View:
Putting it all Together
•   Again Right-to-left approach
•   Index operation priorities Seek-> Scan-> Heap
•   Join operation priorities Merge->NL-> Hash
•   Advanced options
    – MAXDOP
    – INDEX HINTS
    – OPTIMIZE FOR
    – JOIN HINTS
Q/A Time
• Any questions regarding what we have
  covered?
We are done 
Thanks for attending.

More Related Content

Similar to Introduction to execution plan analysis (20)

PDF
Brad McGehee Intepreting Execution Plans Mar09
Mark Ginnebaugh
 
PDF
Brad McGehee Intepreting Execution Plans Mar09
guest9d79e073
 
PDF
SqlDay 2018 - Brief introduction into SQL Server Execution Plans
Marek Maśko
 
PPTX
DOAG: Visual SQL Tuning
Kyle Hailey
 
PPTX
SQL Server 2008 Development for Programmers
Adam Hutson
 
PPTX
SQL Server 2012 Best Practices
Microsoft TechNet - Belgium and Luxembourg
 
PPT
Mssql
Janas Khan
 
PPTX
Database Performance Tuning
Arno Huetter
 
PPTX
Oracle sql high performance tuning
Guy Harrison
 
PDF
Query Tuning for Database Pros & Developers
Code Mastery
 
PDF
SQL Joins and Query Optimization
Brian Gallagher
 
ODP
The PostgreSQL Query Planner
Command Prompt., Inc
 
PPTX
Oracle performance tuning_sfsf
Mao Geng
 
PDF
4 execution plans
Ram Kedem
 
PPTX
05_DP_300T00A_Optimize.pptx
KareemBullard1
 
PPTX
Query Optimization in SQL Server
Rajesh Gunasundaram
 
PPTX
Adbms 39 algorithms for project and set operations
Vaibhav Khanna
 
PPTX
Relational Algebra Operator With Example
exitjogja
 
PPTX
02 database oprimization - improving sql performance - ent-db
uncleRhyme
 
PPT
Sql server introduction to sql server
Vibrant Technologies & Computers
 
Brad McGehee Intepreting Execution Plans Mar09
Mark Ginnebaugh
 
Brad McGehee Intepreting Execution Plans Mar09
guest9d79e073
 
SqlDay 2018 - Brief introduction into SQL Server Execution Plans
Marek Maśko
 
DOAG: Visual SQL Tuning
Kyle Hailey
 
SQL Server 2008 Development for Programmers
Adam Hutson
 
SQL Server 2012 Best Practices
Microsoft TechNet - Belgium and Luxembourg
 
Mssql
Janas Khan
 
Database Performance Tuning
Arno Huetter
 
Oracle sql high performance tuning
Guy Harrison
 
Query Tuning for Database Pros & Developers
Code Mastery
 
SQL Joins and Query Optimization
Brian Gallagher
 
The PostgreSQL Query Planner
Command Prompt., Inc
 
Oracle performance tuning_sfsf
Mao Geng
 
4 execution plans
Ram Kedem
 
05_DP_300T00A_Optimize.pptx
KareemBullard1
 
Query Optimization in SQL Server
Rajesh Gunasundaram
 
Adbms 39 algorithms for project and set operations
Vaibhav Khanna
 
Relational Algebra Operator With Example
exitjogja
 
02 database oprimization - improving sql performance - ent-db
uncleRhyme
 
Sql server introduction to sql server
Vibrant Technologies & Computers
 

More from John Sterrett (14)

PDF
Database Management Myths for Developers
John Sterrett
 
PDF
DBA Basics: Getting Started with Performance Tuning.pdf
John Sterrett
 
PDF
Getting Started with SQL Server Performance Tuning.pdf
John Sterrett
 
PDF
Workload Replay in the Cloud: Secret Weapon for Cloud Migrations
John Sterrett
 
PDF
PowerPivot for DBAs
John Sterrett
 
PPTX
Introduction to High Availability with SQL Server
John Sterrett
 
PPTX
Introduction to PowerShell for DBA's
John Sterrett
 
PPTX
SQL Server Performance Root Cause Analysis in 10 Minutes
John Sterrett
 
PDF
12 Steps to Workload Tuning
John Sterrett
 
PDF
Performance Tuning for Pirates!
John Sterrett
 
PPTX
Can You Host a SQL Saturday?
John Sterrett
 
PPTX
Evaluating Daily Checklist Against 1000 Servers using Policy Based Management
John Sterrett
 
PPTX
SQL Server 2008 For Developers
John Sterrett
 
PPTX
Evaluate Daily Checklist with PBM and CMS
John Sterrett
 
Database Management Myths for Developers
John Sterrett
 
DBA Basics: Getting Started with Performance Tuning.pdf
John Sterrett
 
Getting Started with SQL Server Performance Tuning.pdf
John Sterrett
 
Workload Replay in the Cloud: Secret Weapon for Cloud Migrations
John Sterrett
 
PowerPivot for DBAs
John Sterrett
 
Introduction to High Availability with SQL Server
John Sterrett
 
Introduction to PowerShell for DBA's
John Sterrett
 
SQL Server Performance Root Cause Analysis in 10 Minutes
John Sterrett
 
12 Steps to Workload Tuning
John Sterrett
 
Performance Tuning for Pirates!
John Sterrett
 
Can You Host a SQL Saturday?
John Sterrett
 
Evaluating Daily Checklist Against 1000 Servers using Policy Based Management
John Sterrett
 
SQL Server 2008 For Developers
John Sterrett
 
Evaluate Daily Checklist with PBM and CMS
John Sterrett
 
Ad

Recently uploaded (20)

PPTX
文凭复刻澳洲电子毕业证阳光海岸大学成绩单USC录取通知书
Taqyea
 
PPTX
Ganesh Mahajan Digital marketing Portfolio.pptx
ganeshmahajan786
 
PPTX
原版英国牛津大学毕业证(Oxon毕业证书)如何办理
Taqyea
 
PDF
The Rising Prominence of Podcasts Today
Raj Kumble
 
PPTX
GSM GPRS & CDMA.pptxbhhhhhhhhjhhhjjjjjjjj
saianuragk33
 
PDF
Walking &Working Surfaces – Stairs & Ladders.pdf
دكتور تامر عبدالله شراكى
 
PDF
Bilal Ibrar | Digital Marketing Expert | Resume | CV
Bilal Ibrar
 
PDF
VisionIAS - UPSC GS Paper I Question Paper 2025 with Answer Key.pdf
saxenashubh937
 
PDF
NotificationForTheTeachingPositionsAdvt012025.pdf
sunitsaathi
 
PPTX
CLASSROOM OFFICERS COMPOSITION FOR THE S.Y. 2025-2026
JuffyMastelero
 
PDF
From-Idea-to-Business-Plan-A-Practical-Guide.pdf
eman youssif
 
PDF
Ch7.pdf fghjkloiuytrezgdrsrddfhhvhjgufygfgjhfugyfufutfgyufuygfuygfuytfuytftfy...
SuKosh1
 
PDF
Convex optimization analysis in todays world scenario.pdf
mahizxy
 
PPTX
Adaptive Leadership Model 2025 – AI-Generated PowerPoint by Presentify.ai
presentifyai
 
PDF
Rediscovering Classic Illustration Techniques.pdf
Bruno Amezcua
 
PDF
Buy Twitter Accounts_ Boost Your Brand and Reach in 2025 - Copy - Copy.pdf
Buy Old Twitter Accounts-100% Secure Aged With Followers
 
PDF
Smarter Private Job Search Starts with Formwalaa
Reeshna Prajeesh
 
DOCX
PMCF -Performance Monitoring and Coaching Form
ROSALIESOMBILON
 
PDF
Mastercard Foundation post.pdf documentation
odameamesika
 
PPTX
STATE OFFICERS for organization reference
conqueror3rd
 
文凭复刻澳洲电子毕业证阳光海岸大学成绩单USC录取通知书
Taqyea
 
Ganesh Mahajan Digital marketing Portfolio.pptx
ganeshmahajan786
 
原版英国牛津大学毕业证(Oxon毕业证书)如何办理
Taqyea
 
The Rising Prominence of Podcasts Today
Raj Kumble
 
GSM GPRS & CDMA.pptxbhhhhhhhhjhhhjjjjjjjj
saianuragk33
 
Walking &Working Surfaces – Stairs & Ladders.pdf
دكتور تامر عبدالله شراكى
 
Bilal Ibrar | Digital Marketing Expert | Resume | CV
Bilal Ibrar
 
VisionIAS - UPSC GS Paper I Question Paper 2025 with Answer Key.pdf
saxenashubh937
 
NotificationForTheTeachingPositionsAdvt012025.pdf
sunitsaathi
 
CLASSROOM OFFICERS COMPOSITION FOR THE S.Y. 2025-2026
JuffyMastelero
 
From-Idea-to-Business-Plan-A-Practical-Guide.pdf
eman youssif
 
Ch7.pdf fghjkloiuytrezgdrsrddfhhvhjgufygfgjhfugyfufutfgyufuygfuygfuytfuytftfy...
SuKosh1
 
Convex optimization analysis in todays world scenario.pdf
mahizxy
 
Adaptive Leadership Model 2025 – AI-Generated PowerPoint by Presentify.ai
presentifyai
 
Rediscovering Classic Illustration Techniques.pdf
Bruno Amezcua
 
Buy Twitter Accounts_ Boost Your Brand and Reach in 2025 - Copy - Copy.pdf
Buy Old Twitter Accounts-100% Secure Aged With Followers
 
Smarter Private Job Search Starts with Formwalaa
Reeshna Prajeesh
 
PMCF -Performance Monitoring and Coaching Form
ROSALIESOMBILON
 
Mastercard Foundation post.pdf documentation
odameamesika
 
STATE OFFICERS for organization reference
conqueror3rd
 
Ad

Introduction to execution plan analysis

  • 1. Performance Tuning: Intro to Execution Plan Analysis Presented by Kon Melamud
  • 2. About me • SQL Server Team Lead for RDX • Lead code tuning team within RDX • RDX works with over 200 customers on solutions within the SQL Server environment world wide.
  • 5. Divide and conquer approach • Eliminating non-problem areas – Hardware - memory, CPU – Disk/SAN performance – Maintenance Tasks - index/statistics maintenance – Other Applications on server causing performance bottleneck For more information on tools and techniques used to identify problem areas check out John Sterrett’s presentation, Performance tuning for Pirates, http://bit.ly/P3h5Hf
  • 6. Objectives • Execution plans – Additional tools – Things to check before start of analysis • Indexes used by the SQL optimizer – Different type of index operations – Best practices – Determine what indexes are the optimal ones and the exceptions to the rules • Join operations – Different join type and how they work – Exceptions to the general best practices
  • 7. Execution Plans in a glance • How to view an execution plan – Profiler – DMVs – Extended Events (SQL2008+ only) – Ad hoc queries • Different views of execution plans – Graphical view – XML view – Text view
  • 8. Before we begin… • Additional query options (STATISTICS IO/TIME) • Check optimization levels • Check if optimizer timed out during plan generation • How to regenerate a plan • Right-to-left approach
  • 9. Index Operations • Four different base table operations – Table Scan – Index Scan - clustered/non-clustered – Index Seek - clustered/non-clustered – Lookups - RID/Key
  • 10. Index Operations – Table Scans • Table Scan – Heap (no clustered index) – Generally not a best practice for data retrieval • When Table Scans Are Acceptable – Small tables – Table variables – CTE functionality – Heavily inserted tables, minimal selects/updates/deletes
  • 11. Index Operations – Index Scans • Clustered Index Scans – Same as a table scan but table is sorted on disk – Generally slightly better than heap operations for CPU usage – Query could most likely benefit from different index – Could also mean the large range of data is been selected
  • 12. Index Operations – Index Scans • Non-Clustered Index Scan – Less data scanned than a clustered index – Causes for non-clustered index scan • Not an optimal index for the query • Seek predicate is not SARGable • Dataset returned represents most of the table
  • 13. Index Operations – Index Seeks • Clustered Index Seek – Most preferred method for data retrieval – Downside, only one clustered index can exist on the table
  • 14. Index Operations – Index Seeks • Non-Clustered Index Seek – As good as clustered index seek – Upside, can have multiple non-clustered indexes – Downside, over indexing tables can cause slowdowns on writes
  • 15. Index Operations - Lookups • Lookups – What are they? – Only on non-clustered index operations – RID Lookup (Heap) - no clustered index present – Key Lookup (Clustered) - clustered key lookup • Eliminating lookups – Pre SQL2005, create covering indexes – SQL2005 and later, INCLUDED columns option • Exceptions to eliminating lookups – Select every column from the table
  • 16. Index Operations - Lookups RID Lookup Key Lookup
  • 17. Join Operations • Three main logical join operators – Hash join – Nested Loop join – Merge join
  • 18. Join Operations – Hash Join • Hash joins - How it works… – Two phases - build phase, probe phase • Build phase - Scans or computes build input and builds hash table in memory (if possible) • Probe phase - For each row of probe input hash value is build or computed than compared against hash bucket of the build input, either producing matches or not – Requires at least one equality statement – Performed when at least one side of the join is not properly indexed (index scan/table scan) – Most common join operation
  • 19. Join Operations – Hash Join Graphic Look:
  • 20. Join Operation – Nested Loop • Nested loop join – How it works – Also called nested iteration, builds two inputs - inner and outer input • Outer input (displayed on top in the execution plan) – Processes row by row against inner output – A smaller table in the join predicate • Inner input (on the bottom of the execution plan) – Scanned for every row of the outer input to produce matches – A larger table of the two participating in the join – Has to be properly indexed ( index seeks) – Usually used when one table in the join is relatively small and the other is rather large, and at least one table (larger) is properly indexed. • If those conditions are met generally outperforms hash join operations
  • 21. Join Operation – Nested Loop Graphic Look:
  • 22. Join Operations - Merge • Merge join – How it works – Both tables participated in the join must be sorted on the join columns. If that condition is not met, merge join operation would require an explicit sort which could be very costly. – Both inputs are scanned once at the same time, one row at a time, and if the rows are not matched, the row is discarded. Since both inputs are sorted, we can guarantee we will not see another possible match.
  • 23. Join Operations - Merge Join Graphic Look:
  • 24. Parallelism – Good or Bad? • SQL Server Optimizer determines when to use – Can be seen in execution plan as one of three exchange operators • Distribute Streams • Repartition Streams • Gather Streams – When parallel execution is not an option • The query contains scalar or relational operators that cannot be run in parallel • Sequential cost of the query is not high enough • Sequential execution is faster than parallel – Cost threshold of parallelism and MAXDOP options
  • 26. Putting it all Together • Again Right-to-left approach • Index operation priorities Seek-> Scan-> Heap • Join operation priorities Merge->NL-> Hash • Advanced options – MAXDOP – INDEX HINTS – OPTIMIZE FOR – JOIN HINTS
  • 27. Q/A Time • Any questions regarding what we have covered?
  • 28. We are done  Thanks for attending.