SlideShare a Scribd company logo
Forcing SQL execution
plan instability
Maris Elsins
Oracle [Applications] DBA
Meetup v2.0
© 2011 Pythian2
Who I am
• 9yOracle: 3y – PL/SQL Developer, 6y – Oracle [Apps] DBA
• Certificates: 10g OCM, 9i/10g/11g OCP, 11i Apps DBA OCP, 11i
SysAdmin OCE
• Working for Pythian since 07.2011
• Conferences:
• : 2007/2008/2010/2011
• : 2009/2010
• OUG Harmony : 2010/2011
• How to find me?
• http://www.pythian.com/news/author/elsins/
• http://appsdbalife.wordpress.com/
• http://lv.linkedin.com/in/mariselsins
• http://education.oracle.com/education/otn/melsins.html
• @MarisElsins
© 2011 Pythian3
Agenda
• Let’s talk about basics and stability at first
• Introduction about SQL execution plans
• Why do execution plans change?
• Why DBAs should be thinking about plan (in)stability?
• What plan stability features are available?
• SQL Plan Management (Baselines)
• SQL execution plan instability
• Why we would like to cause instability of execution
plans?
• How to «help» oracle to choose different execution plan?
• How to force oracle to use the plan which we know is
better?
© 2011 Pythian
Lets talk about basics and
stability!
4
© 2011 Pythian5
What is the «execution plan»?
• Set of detailed instructions on how to execute the
DML statement
• The instructions determine execution decisions like:
• In what order the tables (data sets) will be accessed
• What will be the access path (table scan/index)
• What will be the access method (index range scan / )
• How the data sets will be joint (HJ/NL/MJ)
• What/when set operations will be applied (union/minus/...)
• ... ~30 different operations available ...
• Each valid DML statement has an execution plan
• Execution plan is built by Optimizer during SQL parse
phase
© 2011 Pythian6
Sample execution plan
select o.order_date, i.product_id, i.unit_price, i.quantity
from orders o, order_items i
where i.order_id=o.order_id and o.customer_id=120;
--------------------------------------------------------
| Id | Operation | Name |
--------------------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | HASH JOIN | |
| 2 | TABLE ACCESS BY INDEX ROWID| ORDERS |
|* 3 | INDEX RANGE SCAN | ORD_CUSTOMER_IX |
| 4 | TABLE ACCESS FULL | ORDER_ITEMS |
--------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
1 - access("I"."ORDER_ID"="O"."ORDER_ID")
3 - access("O"."CUSTOMER_ID"=120)
© 2011 Pythian7
How to find the execution plan?
• DEMO1
• explain plan for select... – be careful!
• select * from table(DBMS_XPLAN.DISPLAY);
• Autotrace – be careful!
• dbms_xplan.display_cursor – this is good!
• Trace file STAT rows – this is good!
• However! Tkprof with «explain» option = be careful!
• Be Careful! = The execution plan might not be the one
that’s actually used at the time of execution
• this is good! = The execution plan is the one that’s
actually used at the time of execution
© 2011 Pythian8
Why do execution plans change?
• Execution plans are built by optimizer during hard parse operation.
• Hard parse happens just before execution when:
• The query is not found in the library cache (text of the statement is different)
• The query found in the library cache is semantically different
• The query found in the library cache has been invalidated
• The session settings / features are different
• ...
• It’s imposible to have total control over hard parses
• Following things can impact which plan will be chosen by the
optimizer:
• Optimizer statistics – DEMO2
• Data set
• Configuration
• Bind variables
• ...
• Any guesses on how many causes there are for queries with the same
text to have different execution plans? (v$sql_shared_cursor)
© 2011 Pythian9
Why DBAs should be thinking about execution
plan (in)stability?
• Because DBAs hate Mondays.
• Because data change and optimizer makes mistakes.
• Because optimizer behaviour can change after
patching / updates.
• Because bind variable peeking can make you hate
Tuesdays too.
• Because global configuration changes can affect
queries that we don’t want to be affected.
• e.g. pga_aggregate_target and hash joins
• Becuase ...
© 2011 Pythian10
Why DBAs are not thinking much about
execution plan (in)stability?
People get used to frequent performance issues
There were no good solutions to the problem
..But now it can be changed
© 2011 Pythian11
What plan stability features are available?
• Rule Based Optimizer :D 
• Hints 
• Stop collecting statistics 
• Outlines («Plan Stability» from 8i, not in 12c) /
• Useful to fight issues with individual SQLs (e.g. Bind variable
peeking)
• not good for wide use as the plans are completely locked
• Baselines («SQL Plan Management» from 11g) 
• Provides stability and also the flexibility
• DEMO3 Outlines
• DEMO4 Baselines
© 2011 Pythian12
More about Baselines...
• Capturing the baselines
• Automatic1
• OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=TRUE
• 1st baseline is accepted automatically, others are not accepted
• Baseline is automatically created only for the queries that are executed at least 2
times
• DEMO2
• Automatic2
• OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=FALSE
• If the baseline for the SQL exists already and possibly more efective execution plan
is identified
• Manually (DBMS_SPM)
• Load from Cursor cache (filter by schema, module, action)
• Load from Sql Tuning Set (DBMS_SQLTUNE = Tuning Pack)
• Load from AWR (DBMS_SQLTUNE = Tuning Pack)
• All manually loaded baselines are accepted when loaded
• Which baseline is used by optimizer?
• Fixed baseline with the lowest cost
• Accepted baseline with the lowest cost
© 2011 Pythian13
Evolving the baselines...
• What Evolving does?
• Compares the performance of new baselines to the best accepted baseline
• Comparison is done by executing sqls (comparing elapsed time, buffer gets,
...)
• If the new execution plan performs better, the baseline is accepted
• Evolving SQL Baselines
• Automatically = SQL Tuning Advisor = Tuning Pack licenses required
• Manually
• By Running DBMS_SPM.evolve_sql_plan_baseline
• By loading the new baselines from the cursor cache.
• SQL Plan Management (Baselines) is one of the TOP new features in 11g
© 2011 Pythian
SQL execution plan instability
Forcing optimizer to choose different execution plan
14
© 2011 Pythian15
Why we would like to force optimizer to use
different execution plan?
• Typical situations that benefit from ability to force usage
of different execution plans
• Optimizer refuses to generate the most efficient execution plan, we
need to force the usage of our tuned execution plan.
• We have an emergency!
• We have a poorly performin 3rd party application without access to
the source code, we are not able to tune the SQLs.
• Change control process is to painful and long (I’m not suggesting to
skip the testing)
• How do we want to do it?
• We want to affect only the queries we choose
• We want to affect those queries only in the way we choose
• We want flexibility in case situation changes
• We want a supported approach
• We don’t want to cause any downtime
• We don’t want to pay more 
© 2011 Pythian16
What features are available to force optimizer
to use different execution plan?
• Preferred approach
• Collect statistics so that they represent the data correctly 
• Tune the query, but don’t use hints
• Other options only when preferred approach is not possible
• Set and lock statistics 
• Adjust settings / init parameters 
• Globally
• Using logon triggers
• Outlines /
• SQL Profiles (EE+Diag+Tuning Packs = $) /
• Provides additional selectivity estimates to the optimizer
• Baselines 
Wait a second, there are copy/paste issues on this slide!
Outlines and Baselines are plan stability features!
...yes, but they can be used for other purposes too...
© 2011 Pythian17
Using Outlines to force usage of the execution plan
• Based on «How to Edit a Stored Outline to Use the Plan from
Another Stored Outline [ID 730062.1]»
• Create 2 private outlines
• For current execution plan
• For the wanted execution plan
• Swap private outlines
• Test private outlines
• Make the new outline public
• The method is supported by Oracle and available for versions 9i-
11gR2
• DEMO6
© 2011 Pythian18
Using Baselines to force usage of the execution plan
• Similarily to outlines there is an option to swap baselines by
• exporting them to stage table
• updating the data
• importing the modified baseline
• Recently J.Lewis suggested an easier way to build a «fake» baseline
• http://jonathanlewis.wordpress.com/2011/01/12/fake-baselines/
• Use dbms_spm.load_plans_from_cursor_cache to create the baseline
by combining data from 2 different SQLs:
• sql_text from bad SQL
• Sql_id and plan_hash_value from good SQL
• The method is fully supported by Oracle
• DEMO7
© 2011 Pythian19
Summary
• Databases change and so do the execution plans
• They can change to better one or worse ones
• There are situation when we need plan stability to
avoid bad surprises
• There are also situations when we want to enforce
different execution plan for particualt SQL
• Till 11g there were no good flexible features for that
• Check out the SQL Plan Management if you’re on 11g+
• Easy to use
• Offers Flexibility
• Available on 11g+ SE/EE
• Be careful with performance management options:
• Easy to do something that requires licensing
• control_management_pack_access
© 2011 Pythian20
Pythian Facts
• Founded in 1997, over 14 years
• 130+ employees
• 5 offices in 5 countries
• lots of employees around the world
• Employs
• 6 Oracle ACEs (Including 1 ACE director)
• Several Oracle Masters
• Plenty of technical geeks
• Platinum level partner in the Oracle Partner Network
• Actively supports technical communities via
• Blogging
• Conferences
• SIGs and other events
• Winner of Oracle North American Titan Award for Oracle
Exadata Pythian Oracle Titan Award.mp4

More Related Content

What's hot (20)

PDF
KoprowskiT - SQLBITS X - 2am a disaster just began
Tobias Koprowski
 
PDF
MySQL Performance Tuning: The Perfect Scalability (OOW2019)
Mirko Ortensi
 
PDF
MySQL 5.7: Focus on InnoDB
Mario Beck
 
PDF
Oracle Database appliance - Value proposition Webcast
Thanos TP
 
PPT
Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Toronto-Oracle-Users-Group
 
PPTX
Making MySQL highly available using Oracle Grid Infrastructure
Ilmar Kerm
 
PPTX
Exadata 12c New Features RMOUG
Fuad Arshad
 
PDF
WebLogic on ODA - Oracle Open World 2013
Michel Schildmeijer
 
PPTX
C15LV: Ins and Outs of Concurrent Processing Configuration in Oracle e-Busine...
Maris Elsins
 
PPTX
My sql performance tuning course
Alberto Centanni
 
PDF
Enterprise PostgreSQL - EDB's answer to conventional Databases
Ashnikbiz
 
PDF
MySQL Performance Metrics that Matter
Morgan Tocker
 
PDF
Docker Concepts for Oracle/MySQL DBAs and DevOps
Zohar Elkayam
 
PDF
Whitepaper: Running Oracle e-Business Suite Database on Oracle Database Appli...
Maris Elsins
 
PPTX
Oracle Database Appliance X5-2
Yasir El Nimr
 
PDF
Oracle Database Appliance Workshop
MarketingArrowECS_CZ
 
PPTX
Sql Server 2014 In Memory
Ravi Okade
 
PDF
KoprowskiT_SQLRelay2014#8_Birmingham_FromPlanToBackupToCloud
Tobias Koprowski
 
PPTX
SPSSac2014 - SharePoint Infrastructure Tips and Tricks for On-Premises and Hy...
Michael Noel
 
PDF
The InnoDB Storage Engine for MySQL
Morgan Tocker
 
KoprowskiT - SQLBITS X - 2am a disaster just began
Tobias Koprowski
 
MySQL Performance Tuning: The Perfect Scalability (OOW2019)
Mirko Ortensi
 
MySQL 5.7: Focus on InnoDB
Mario Beck
 
Oracle Database appliance - Value proposition Webcast
Thanos TP
 
Extreme Availability using Oracle 12c Features: Your very last system shutdown?
Toronto-Oracle-Users-Group
 
Making MySQL highly available using Oracle Grid Infrastructure
Ilmar Kerm
 
Exadata 12c New Features RMOUG
Fuad Arshad
 
WebLogic on ODA - Oracle Open World 2013
Michel Schildmeijer
 
C15LV: Ins and Outs of Concurrent Processing Configuration in Oracle e-Busine...
Maris Elsins
 
My sql performance tuning course
Alberto Centanni
 
Enterprise PostgreSQL - EDB's answer to conventional Databases
Ashnikbiz
 
MySQL Performance Metrics that Matter
Morgan Tocker
 
Docker Concepts for Oracle/MySQL DBAs and DevOps
Zohar Elkayam
 
Whitepaper: Running Oracle e-Business Suite Database on Oracle Database Appli...
Maris Elsins
 
Oracle Database Appliance X5-2
Yasir El Nimr
 
Oracle Database Appliance Workshop
MarketingArrowECS_CZ
 
Sql Server 2014 In Memory
Ravi Okade
 
KoprowskiT_SQLRelay2014#8_Birmingham_FromPlanToBackupToCloud
Tobias Koprowski
 
SPSSac2014 - SharePoint Infrastructure Tips and Tricks for On-Premises and Hy...
Michael Noel
 
The InnoDB Storage Engine for MySQL
Morgan Tocker
 

Similar to LVOUG meetup #2 - Forcing SQL Execution Plan Instability (20)

PDF
OUG Harmony 2012 - Using SQL Plan Baselines for Performance Testing
Maris Elsins
 
PDF
Performance Tuning with Execution Plans
Grant Fritchey
 
PDF
My Experience Using Oracle SQL Plan Baselines 11g/12c
Nelson Calero
 
PPTX
Understanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Guatemala User Group
 
PDF
31063115_1679409488310Developer_Tuning_Tips_-_UTOUG_Mar_2023.pdf
TricantinoLopezPerez
 
PDF
Controlling execution plans 2014
Enkitec
 
PDF
Evolution of Performance Management: Oracle 12c adaptive optimizations - ukou...
Nelson Calero
 
PDF
Oracle SQL tuning with SQL Plan Management
Bjoern Rost
 
PDF
EvolveExecutionPlans.pdf
PraveenPolu1
 
PDF
An Approach to Sql tuning - Part 1
Navneet Upneja
 
PPTX
Oracle SPM 12c. IOUG #C15LV
Alfredo Krieg
 
PDF
Managing Statistics for Optimal Query Performance
Karen Morton
 
PPTX
Oracle Query Optimizer - An Introduction
adryanbub
 
PPTX
Beginners guide to_optimizer
Maria Colgan
 
PDF
Using SQL Plan Management for Performance Testing
Maris Elsins
 
PPTX
Oracle 12c SPM
Anton Bushmelev
 
PPTX
Adapting and adopting spm v04
Carlos Sierra
 
PPTX
Query processing and optimization on dbms
ar1289589
 
PDF
Presentation interpreting execution plans for sql statements
xKinAnx
 
PDF
Setting up the Oracle Optimizer for Proof of Concept Testing
Nigel Bayliss
 
OUG Harmony 2012 - Using SQL Plan Baselines for Performance Testing
Maris Elsins
 
Performance Tuning with Execution Plans
Grant Fritchey
 
My Experience Using Oracle SQL Plan Baselines 11g/12c
Nelson Calero
 
Understanding Query Optimization with ‘regular’ and ‘Exadata’ Oracle
Guatemala User Group
 
31063115_1679409488310Developer_Tuning_Tips_-_UTOUG_Mar_2023.pdf
TricantinoLopezPerez
 
Controlling execution plans 2014
Enkitec
 
Evolution of Performance Management: Oracle 12c adaptive optimizations - ukou...
Nelson Calero
 
Oracle SQL tuning with SQL Plan Management
Bjoern Rost
 
EvolveExecutionPlans.pdf
PraveenPolu1
 
An Approach to Sql tuning - Part 1
Navneet Upneja
 
Oracle SPM 12c. IOUG #C15LV
Alfredo Krieg
 
Managing Statistics for Optimal Query Performance
Karen Morton
 
Oracle Query Optimizer - An Introduction
adryanbub
 
Beginners guide to_optimizer
Maria Colgan
 
Using SQL Plan Management for Performance Testing
Maris Elsins
 
Oracle 12c SPM
Anton Bushmelev
 
Adapting and adopting spm v04
Carlos Sierra
 
Query processing and optimization on dbms
ar1289589
 
Presentation interpreting execution plans for sql statements
xKinAnx
 
Setting up the Oracle Optimizer for Proof of Concept Testing
Nigel Bayliss
 
Ad

More from Maris Elsins (12)

PDF
An AWS DMS Replication Journey from Oracle to Aurora MySQL
Maris Elsins
 
PDF
Oracle Databases on AWS - Getting the Best Out of RDS and EC2
Maris Elsins
 
PDF
Migrating and Running DBs on Amazon RDS for Oracle
Maris Elsins
 
PDF
Mining AWR V2 - Trend Analysis
Maris Elsins
 
PDF
Mining the AWR: Alternative Methods for Identification of the Top SQLs (inclu...
Maris Elsins
 
PPTX
LVOUG meetup #4 - Case Study 10g to 11g
Maris Elsins
 
PPTX
Surviving the Crisis With the Help of Oracle Database Resource Manager
Maris Elsins
 
PPTX
Concurrent Processing Performance Analysis for Apps DBAs
Maris Elsins
 
PPTX
Simplify Consolidation with Oracle Database 12c
Maris Elsins
 
PPTX
10 ways to improve your rman script
Maris Elsins
 
PPTX
Wildcard13 - warmup slides for the "Roundtable discussion with Oracle Profess...
Maris Elsins
 
PDF
Internals of concurent managers
Maris Elsins
 
An AWS DMS Replication Journey from Oracle to Aurora MySQL
Maris Elsins
 
Oracle Databases on AWS - Getting the Best Out of RDS and EC2
Maris Elsins
 
Migrating and Running DBs on Amazon RDS for Oracle
Maris Elsins
 
Mining AWR V2 - Trend Analysis
Maris Elsins
 
Mining the AWR: Alternative Methods for Identification of the Top SQLs (inclu...
Maris Elsins
 
LVOUG meetup #4 - Case Study 10g to 11g
Maris Elsins
 
Surviving the Crisis With the Help of Oracle Database Resource Manager
Maris Elsins
 
Concurrent Processing Performance Analysis for Apps DBAs
Maris Elsins
 
Simplify Consolidation with Oracle Database 12c
Maris Elsins
 
10 ways to improve your rman script
Maris Elsins
 
Wildcard13 - warmup slides for the "Roundtable discussion with Oracle Profess...
Maris Elsins
 
Internals of concurent managers
Maris Elsins
 
Ad

Recently uploaded (20)

PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
Digital Circuits, important subject in CS
contactparinay1
 
PDF
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Digital Circuits, important subject in CS
contactparinay1
 
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 

LVOUG meetup #2 - Forcing SQL Execution Plan Instability

  • 1. Forcing SQL execution plan instability Maris Elsins Oracle [Applications] DBA Meetup v2.0
  • 2. © 2011 Pythian2 Who I am • 9yOracle: 3y – PL/SQL Developer, 6y – Oracle [Apps] DBA • Certificates: 10g OCM, 9i/10g/11g OCP, 11i Apps DBA OCP, 11i SysAdmin OCE • Working for Pythian since 07.2011 • Conferences: • : 2007/2008/2010/2011 • : 2009/2010 • OUG Harmony : 2010/2011 • How to find me? • http://www.pythian.com/news/author/elsins/ • http://appsdbalife.wordpress.com/ • http://lv.linkedin.com/in/mariselsins • http://education.oracle.com/education/otn/melsins.html • @MarisElsins
  • 3. © 2011 Pythian3 Agenda • Let’s talk about basics and stability at first • Introduction about SQL execution plans • Why do execution plans change? • Why DBAs should be thinking about plan (in)stability? • What plan stability features are available? • SQL Plan Management (Baselines) • SQL execution plan instability • Why we would like to cause instability of execution plans? • How to «help» oracle to choose different execution plan? • How to force oracle to use the plan which we know is better?
  • 4. © 2011 Pythian Lets talk about basics and stability! 4
  • 5. © 2011 Pythian5 What is the «execution plan»? • Set of detailed instructions on how to execute the DML statement • The instructions determine execution decisions like: • In what order the tables (data sets) will be accessed • What will be the access path (table scan/index) • What will be the access method (index range scan / ) • How the data sets will be joint (HJ/NL/MJ) • What/when set operations will be applied (union/minus/...) • ... ~30 different operations available ... • Each valid DML statement has an execution plan • Execution plan is built by Optimizer during SQL parse phase
  • 6. © 2011 Pythian6 Sample execution plan select o.order_date, i.product_id, i.unit_price, i.quantity from orders o, order_items i where i.order_id=o.order_id and o.customer_id=120; -------------------------------------------------------- | Id | Operation | Name | -------------------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | HASH JOIN | | | 2 | TABLE ACCESS BY INDEX ROWID| ORDERS | |* 3 | INDEX RANGE SCAN | ORD_CUSTOMER_IX | | 4 | TABLE ACCESS FULL | ORDER_ITEMS | -------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 1 - access("I"."ORDER_ID"="O"."ORDER_ID") 3 - access("O"."CUSTOMER_ID"=120)
  • 7. © 2011 Pythian7 How to find the execution plan? • DEMO1 • explain plan for select... – be careful! • select * from table(DBMS_XPLAN.DISPLAY); • Autotrace – be careful! • dbms_xplan.display_cursor – this is good! • Trace file STAT rows – this is good! • However! Tkprof with «explain» option = be careful! • Be Careful! = The execution plan might not be the one that’s actually used at the time of execution • this is good! = The execution plan is the one that’s actually used at the time of execution
  • 8. © 2011 Pythian8 Why do execution plans change? • Execution plans are built by optimizer during hard parse operation. • Hard parse happens just before execution when: • The query is not found in the library cache (text of the statement is different) • The query found in the library cache is semantically different • The query found in the library cache has been invalidated • The session settings / features are different • ... • It’s imposible to have total control over hard parses • Following things can impact which plan will be chosen by the optimizer: • Optimizer statistics – DEMO2 • Data set • Configuration • Bind variables • ... • Any guesses on how many causes there are for queries with the same text to have different execution plans? (v$sql_shared_cursor)
  • 9. © 2011 Pythian9 Why DBAs should be thinking about execution plan (in)stability? • Because DBAs hate Mondays. • Because data change and optimizer makes mistakes. • Because optimizer behaviour can change after patching / updates. • Because bind variable peeking can make you hate Tuesdays too. • Because global configuration changes can affect queries that we don’t want to be affected. • e.g. pga_aggregate_target and hash joins • Becuase ...
  • 10. © 2011 Pythian10 Why DBAs are not thinking much about execution plan (in)stability? People get used to frequent performance issues There were no good solutions to the problem ..But now it can be changed
  • 11. © 2011 Pythian11 What plan stability features are available? • Rule Based Optimizer :D  • Hints  • Stop collecting statistics  • Outlines («Plan Stability» from 8i, not in 12c) / • Useful to fight issues with individual SQLs (e.g. Bind variable peeking) • not good for wide use as the plans are completely locked • Baselines («SQL Plan Management» from 11g)  • Provides stability and also the flexibility • DEMO3 Outlines • DEMO4 Baselines
  • 12. © 2011 Pythian12 More about Baselines... • Capturing the baselines • Automatic1 • OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=TRUE • 1st baseline is accepted automatically, others are not accepted • Baseline is automatically created only for the queries that are executed at least 2 times • DEMO2 • Automatic2 • OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=FALSE • If the baseline for the SQL exists already and possibly more efective execution plan is identified • Manually (DBMS_SPM) • Load from Cursor cache (filter by schema, module, action) • Load from Sql Tuning Set (DBMS_SQLTUNE = Tuning Pack) • Load from AWR (DBMS_SQLTUNE = Tuning Pack) • All manually loaded baselines are accepted when loaded • Which baseline is used by optimizer? • Fixed baseline with the lowest cost • Accepted baseline with the lowest cost
  • 13. © 2011 Pythian13 Evolving the baselines... • What Evolving does? • Compares the performance of new baselines to the best accepted baseline • Comparison is done by executing sqls (comparing elapsed time, buffer gets, ...) • If the new execution plan performs better, the baseline is accepted • Evolving SQL Baselines • Automatically = SQL Tuning Advisor = Tuning Pack licenses required • Manually • By Running DBMS_SPM.evolve_sql_plan_baseline • By loading the new baselines from the cursor cache. • SQL Plan Management (Baselines) is one of the TOP new features in 11g
  • 14. © 2011 Pythian SQL execution plan instability Forcing optimizer to choose different execution plan 14
  • 15. © 2011 Pythian15 Why we would like to force optimizer to use different execution plan? • Typical situations that benefit from ability to force usage of different execution plans • Optimizer refuses to generate the most efficient execution plan, we need to force the usage of our tuned execution plan. • We have an emergency! • We have a poorly performin 3rd party application without access to the source code, we are not able to tune the SQLs. • Change control process is to painful and long (I’m not suggesting to skip the testing) • How do we want to do it? • We want to affect only the queries we choose • We want to affect those queries only in the way we choose • We want flexibility in case situation changes • We want a supported approach • We don’t want to cause any downtime • We don’t want to pay more 
  • 16. © 2011 Pythian16 What features are available to force optimizer to use different execution plan? • Preferred approach • Collect statistics so that they represent the data correctly  • Tune the query, but don’t use hints • Other options only when preferred approach is not possible • Set and lock statistics  • Adjust settings / init parameters  • Globally • Using logon triggers • Outlines / • SQL Profiles (EE+Diag+Tuning Packs = $) / • Provides additional selectivity estimates to the optimizer • Baselines  Wait a second, there are copy/paste issues on this slide! Outlines and Baselines are plan stability features! ...yes, but they can be used for other purposes too...
  • 17. © 2011 Pythian17 Using Outlines to force usage of the execution plan • Based on «How to Edit a Stored Outline to Use the Plan from Another Stored Outline [ID 730062.1]» • Create 2 private outlines • For current execution plan • For the wanted execution plan • Swap private outlines • Test private outlines • Make the new outline public • The method is supported by Oracle and available for versions 9i- 11gR2 • DEMO6
  • 18. © 2011 Pythian18 Using Baselines to force usage of the execution plan • Similarily to outlines there is an option to swap baselines by • exporting them to stage table • updating the data • importing the modified baseline • Recently J.Lewis suggested an easier way to build a «fake» baseline • http://jonathanlewis.wordpress.com/2011/01/12/fake-baselines/ • Use dbms_spm.load_plans_from_cursor_cache to create the baseline by combining data from 2 different SQLs: • sql_text from bad SQL • Sql_id and plan_hash_value from good SQL • The method is fully supported by Oracle • DEMO7
  • 19. © 2011 Pythian19 Summary • Databases change and so do the execution plans • They can change to better one or worse ones • There are situation when we need plan stability to avoid bad surprises • There are also situations when we want to enforce different execution plan for particualt SQL • Till 11g there were no good flexible features for that • Check out the SQL Plan Management if you’re on 11g+ • Easy to use • Offers Flexibility • Available on 11g+ SE/EE • Be careful with performance management options: • Easy to do something that requires licensing • control_management_pack_access
  • 20. © 2011 Pythian20 Pythian Facts • Founded in 1997, over 14 years • 130+ employees • 5 offices in 5 countries • lots of employees around the world • Employs • 6 Oracle ACEs (Including 1 ACE director) • Several Oracle Masters • Plenty of technical geeks • Platinum level partner in the Oracle Partner Network • Actively supports technical communities via • Blogging • Conferences • SIGs and other events • Winner of Oracle North American Titan Award for Oracle Exadata Pythian Oracle Titan Award.mp4