SlideShare a Scribd company logo
1 of 69
Download to read offline
www.sagecomputing.com.au
penny@sagecomputing.com.au
Meet the Cost Based
Optimiser in 11g
Penny Cookson
SAGE Computing Services
SAGE Computing Services
Customised Oracle Training Workshops and Consulting
SAGE Computing Services
Customised Oracle Training Workshops and Consulting
Penny Cookson
Managing Director and Principal Consultant
Working with Oracle products since 1987
Oracle Magazine Educator of the Year 2004
www.sagecomputing.com.au
penny@sagecomputing.com.au
A Characteristic Problem
I haven’t changed anything
Its really slow this morning
I did the same thing yesterday and it was fine
Actually its OK now
No its not
Thank you so much you’ve fixed it (I haven’t done anything)
Oracle Version < 9
SELECT COUNT(l.quantity)
FROM bookings_skew l
WHERE resource_code = :v1;
‘BRLG’
<Version 9 database
No bind peeking
Shared Pool
SELECT COUNT(l.quantity)
FROM bookings_skew_large l
WHERE resource_code = :v1;
‘PC1’
FULL SCAN
How many
rows do I
expect?
Oracle Version < 9
SELECT COUNT(l.quantity)
FROM bookings_skew l
WHERE resource_code = :v1;
‘BRLG’
<Version 9 database
No bind peeking
Shared Pool
SELECT COUNT(l.quantity)
FROM bookings_skew_large l
WHERE resource_code = :v1;
‘PC1’
FULL SCAN
How many
rows do I
expect?
What is Bind Peeking?
SELECT COUNT(l.quantity)
FROM bookings_skew l
WHERE resource_code = :v1;
‘PC1’
>=Version 9 database
Bind peeking
Shared Pool
SELECT COUNT(l.quantity)
FROM bookings_skew l
WHERE resource_code = :v1;
‘BRLG’
INDEXED
ACCESS
How many
rows do I
expect?
Histogram – Minority First
***************************************
SINGLE TABLE ACCESS PATH
Column (#3): RESOURCE_CODE(VARCHAR2)
AvgLen: 5.00 NDV: 9 Nulls: 0 Density: 9.0892e-008
Histogram: Freq #Bkts: 9 UncompBkts: 5966 EndPtVals: 9
Table: BOOKINGS_SKEW Alias: L
Card: Original: 5464800 Rounded: 43968 Computed: 43967.55 Non Adjusted: 43967.55
Access Path: TableScan
Cost: 7693.35 Resp: 7693.35 Degree: 0
Cost_io: 7426.00 Cost_cpu: 1555877511
Resp_io: 7426.00 Resp_cpu: 1555877511
Access Path: index (AllEqRange)
Index: BK_RESSKEW
resc_io: 2399.00 resc_cpu: 37397785
ix_sel: 0.0080456 ix_sel_with_filters: 0.0080456
Cost: 2405.43 Resp: 2405.43 Degree: 1
Best:: AccessPath: IndexRange Index: BK_RESSKEW
Cost: 2405.43 Degree: 1 Resp: 2405.43 Card: 43967.55 Bytes: 0
***************************************
RESO COUNT(*)
---- ----------
VCR1 495711
CONF 495720
LNCH 743576
BRSM 743583
PC1 47858
FLPC 495720
BRLG 1739277
TAP1 247864
VCR2 495715
Histogram – Minority First
What is the CBO good at in 10g?
Data Condition Literal/Bind Var Histogram
Even Distribution Equality Literal N/A
Even Distribution Equality Bind N/A
Skewed Equality Literal NO
Skewed Equality Literal YES
Skewed Equality Bind NO
Skewed Equality Bind YES
Even Distribution Range Bind N/A
Bind Peeking + Adaptive Cursors in 11g
Statements with bind variables (+histograms) are bind sensitive
The first time you execute a statement with different selectivity it
uses the original plan
The second time it changes the plan and become bind aware
New values will use a plan for the appropriate selectivity range
Adaptive Cursors Views
V$SQL
V$SQL_CS_SELECTIVITY
Adaptive Cursors Views
V$SQL_CS_HISTOGRAM
V$SQL_CS_STATISTICS
PLSQL has soft parse avoidance
Implicit cursor
Explicit cursor
Native dynamic SQL
Ref cursor
Session_cached_cursors = 0
No default adaptive cursor functionality
Default adaptive cursor functionality
Adaptive Cursors Functionality
Bind variable with Equality and Histogram
Not for range conditions
Bind variable with Equality and Histogram
Range conditions
Does not support LIKE
/*+ BIND_AWARE */
Adaptive Cursors 11.1.0.6
Adaptive Cursors 11.1.0.7 and 11.2
So where are we now?
Our own code – works properly first time with hint
in SQL and PL/SQL
Packages – will still get it wrong once
and won’t use adaptive cursors for PL/SQL
at all unless we set session cached cursors =0
xxxxxxxxxxxxxxxxxxxxx
Maybe you should buy an
Exadata box
Bind Peeking + Adaptive Cursors Summary
Your code
Packages
Minimise statement invalidations
Consider running the statement with minority and majority value on start up
Use the BIND_AWARE hint (SQL and PL/SQL) for skewed data
Use ref cursors (if hints are not allowed)
?manually hack an outline/profile
PL/SQL – set session_cached_cursors = 0 (temporarily)
Adaptive Cursors What we Really Need
Once a statement has been bind aware it knows next time
its parsed
?SQL *Profile to indicate bind aware
Adaptive Cursors Persistence
Try to get rid of your hints
_optimizer_ignore_hints
Create additional statistics
Set _optimizer_ignore_hints to TRUE
Test the app
If it runs OK remove your hints
58 New Hints
SELECT name, inverse, sql_feature, version
FROM v$sql_hint
WHERE version like '11%'
ORDER BY version desc, name
New Hints
New Hints
IGNORE_ROW_ON_DUPKEY_INDEX
This has nothing to do with optimisation I just like it
New Hints
MONITOR
NO_MONITOR
select /*+ MONITOR */
count(comments) from bookings ;
select DBMS_SQLTUNE.REPORT_SQL_MONITOR(
session_id=>sys_context('userenv','sid'),
report_level=>'ALL') as report
from dual;
Much More Query Transformation
SELECT e.event_no, e.start_date, sum(cost) totcost
FROM events_large e, bookings_large b
WHERE e.event_no = b.event_no
GROUP BY e.event_no, e.start_date
alter session set tracefile_identifier = Penny
alter session set events '10053 trace name context forever'
explain plan for
SELECT e.event_no, e.start_date, sum(cost) totcost
FROM events_large e, bookings_large b
WHERE e.event_no = b.event_no
GROUP BY e.event_no, e.start_date;
alter session set events '10053 trace name context off'
Much More Query Transformation
SELECT e.event_no, e.start_date, sum(cost) totcost
FROM events_large e, bookings_large b
WHERE e.event_no = b.event_no
GROUP BY e.event_no, e.start_date
10G – JOIN before the GROUP BY
11G – GROUP BY before the JOIN
10G – NOT IN (PROMISE_NO NULLABLE)
10G – KILLED AFTER 1 hr
11G – Rewrite as Null Aware Anti join
10G – Full Outer Join – default behaviour
From version 10.2.0.3
SELECT /*+ NATIVE_FULL_OUTER_JOIN */
count(e.comments) nume,
count (b.comments) numb
FROM events_large e
FULL OUTER JOIN bookings_large b
ON (e.event_no = b.event_no)
10G – Full Outer Join – hint
11G Native Full Outer Join
Check the differences in plans
Upgrading
Oracle 10g – Run a whole load of random statements – all of
which require parsing
Oracle 11g – Run a whole load of random statements – all of
which require parsing
So Tuning the Shared
Pool becomes more
important,
but overall the 11g
CBO is pretty smart
Results Cache
SGA
populate invalidate
Most recently
used
SQL/PL/SQL
SQL Query
Results Cache
Results Cache
PL/SQL Function
Results Cache
Most recently used result sets
Buffer Cache Library Cache
Most recently
data
Query Results Cache
RESULT_CACHE_MODE MANUAL
FORCE
/*+RESULT_CACHE */
/*+ NO_RESULT_CACHE */
SELECT /*+ RESULT_CACHE */
count(b.comments)
FROM train1.events_large e, train1.bookings_large b
WHERE e.org_id = :v1
AND e.event_no = b.event_no
AND e.comments = :v2;
PL/SQL Function Results Cache
CREATE OR REPLACE FUNCTION quantity_booked
(p_resource_code in resources.code%TYPE,p_event_date in date)
RETURN NUMBER
RESULT_CACHE
IS
v_total_booked number := 0;
BEGIN
SELECT sum(b.quantity)
INTO v_total_booked
FROM bookings b, events e
WHERE e.event_no = b.event_no
AND p_event_date between e.start_date and e.end_date
AND b.resource_code = p_resource_code;
RETURN (v_total_booked);
END;
Monitoring the Results Cache
SELECT * FROM v$result_cache_memory
SELECT * FROM v$result_cache_objects
SELECT * FROM v$result_cache_statistics
SELECT * FROM v$result_cache_dependency
RESULT_CACHE_MAX_SIZE
RESULT_CACHE_MAX_RESULT
Explain Plan
Setting Statistics Gathering Defaults
GET_PARAM
SET_PARAM Procedure
GET_PREFS Function
SET_TABLE_PREFS (set for individual tables)
SET_DATABASE_PREFS (sets for all tables, can include/exclude
SYS tables)
SET_GLOBAL_PREFS – for new objects
Obsolete:
Use:
Gathering Statistics
Early CBO: “Make sure you gather statistics regularly”
Later CBO: “Don’t gather statistics unless data patterns
change”
BUT
If you have new majority values you need to recreate the
histogram
Gathering and Publishing
Set preferences to PUBLISH = ‘FALSE’
Gather Statistics
user_tab_pending_stats
user_ind_pending_stats
user_col_pending_stats
Run test case
Alter session set
optimizer_pending_statistics
= TRUE Worse
Better
dbms_stats.
delete_pending_stats
dbms_stats.
publish_pending_stats
user_tab_statistics
user_ind_statistics
user_tab_col_statistics
Gathering and Publishing
SELECT obj#, TO_CHAR(savtime,'dd/mm/yyyy') save_time,
rowcnt, blkcnt, avgrln, samplesize, analyzetime
FROM wri$_optstat_tab_history
ORDER BY savtime desc
CBO - Instability
CBO
?access
path
decision
System parameters
Session parameters
Optimiser StatisticsIndexes
SQL Profile
Software version
System statistics
DBA playing around
CBO - Instability
– Leave it all alone
– SQL Plan Management
– Store plan baseline
– Plans not used till accepted
– Manually accept or
– Allow Oracle to evolve plans
Solution 1
Solution 2
SQL Plan Management
Manual capture
DBMS_SPM.LOAD_PLANS_FROM_SQLSET
DBMS_SPM.LOAD_PLANS_FROM_CURSOR_CACHE
Auto capture of repeatable statements
OPTIMIZER_CAPTURE_SQL_PLAN_BASELINE = TRUE
Baseline =
(Stored and Accepted plans)
SQL Management Base
New Plan
identified during
execution
Stored not accepted
SQL Tuning Advisor identifies new
plan – SQL*Profile accepted
Auto accept of new plan
(if it performs better)
DBMS_SPM.EVOLVE_SQL_PLAN_BASELINE
Manual load/accept of new plan
DBMS_SPM.LOAD_PLANS_FROM_SQLSET
DBMS_SPM.LOAD_PLANS_FROM_CURSOR_CACHE
www.sagecomputing.com.au
penny@sagecomputing.com.au
SAGE Computing Services
Customised Oracle Training Workshops and Consulting
Questions?
www.sagecomputing.com.au
penny@sagecomputing.com.au

More Related Content

What's hot

Java script – basic auroskills (2)
Java script – basic   auroskills (2)Java script – basic   auroskills (2)
Java script – basic auroskills (2)BoneyGawande
 
Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 01
Oracle - Program with PL/SQL - Lession 01Oracle - Program with PL/SQL - Lession 01
Oracle - Program with PL/SQL - Lession 01Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 07
Oracle - Program with PL/SQL - Lession 07Oracle - Program with PL/SQL - Lession 07
Oracle - Program with PL/SQL - Lession 07Thuan Nguyen
 
Table partitioning in PostgreSQL + Rails
Table partitioning in PostgreSQL + RailsTable partitioning in PostgreSQL + Rails
Table partitioning in PostgreSQL + RailsAgnieszka Figiel
 
Oracle - Program with PL/SQL - Lession 04
Oracle - Program with PL/SQL - Lession 04Oracle - Program with PL/SQL - Lession 04
Oracle - Program with PL/SQL - Lession 04Thuan Nguyen
 
Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Thuan Nguyen
 
Oracle 11g Invisible Indexes
Oracle 11g Invisible IndexesOracle 11g Invisible Indexes
Oracle 11g Invisible IndexesAnar Godjaev
 
Window functions with SQL Server 2016
Window functions with SQL Server 2016Window functions with SQL Server 2016
Window functions with SQL Server 2016Mark Tabladillo
 
Part3 Explain the Explain Plan
Part3 Explain the Explain PlanPart3 Explain the Explain Plan
Part3 Explain the Explain PlanMaria Colgan
 
Advanced dot net
Advanced dot netAdvanced dot net
Advanced dot netssa2010
 
Oracle - Program with PL/SQL - Lession 05
Oracle - Program with PL/SQL - Lession 05Oracle - Program with PL/SQL - Lession 05
Oracle - Program with PL/SQL - Lession 05Thuan Nguyen
 
Web Developer make the most out of your Database !
Web Developer make the most out of your Database !Web Developer make the most out of your Database !
Web Developer make the most out of your Database !Jean-Marc Desvaux
 

What's hot (20)

Oracle SQL Advanced
Oracle SQL AdvancedOracle SQL Advanced
Oracle SQL Advanced
 
SQL Tunning
SQL TunningSQL Tunning
SQL Tunning
 
Java script – basic auroskills (2)
Java script – basic   auroskills (2)Java script – basic   auroskills (2)
Java script – basic auroskills (2)
 
Ngrx: Redux in angular
Ngrx: Redux in angularNgrx: Redux in angular
Ngrx: Redux in angular
 
Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03Oracle - Program with PL/SQL - Lession 03
Oracle - Program with PL/SQL - Lession 03
 
Oracle - Program with PL/SQL - Lession 01
Oracle - Program with PL/SQL - Lession 01Oracle - Program with PL/SQL - Lession 01
Oracle - Program with PL/SQL - Lession 01
 
Ngrx
NgrxNgrx
Ngrx
 
Oracle - Program with PL/SQL - Lession 07
Oracle - Program with PL/SQL - Lession 07Oracle - Program with PL/SQL - Lession 07
Oracle - Program with PL/SQL - Lession 07
 
Table partitioning in PostgreSQL + Rails
Table partitioning in PostgreSQL + RailsTable partitioning in PostgreSQL + Rails
Table partitioning in PostgreSQL + Rails
 
Oracle - Program with PL/SQL - Lession 04
Oracle - Program with PL/SQL - Lession 04Oracle - Program with PL/SQL - Lession 04
Oracle - Program with PL/SQL - Lession 04
 
Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14Oracle - Program with PL/SQL - Lession 14
Oracle - Program with PL/SQL - Lession 14
 
QuirksofR
QuirksofRQuirksofR
QuirksofR
 
Sql Functions And Procedures
Sql Functions And ProceduresSql Functions And Procedures
Sql Functions And Procedures
 
Oracle 11g Invisible Indexes
Oracle 11g Invisible IndexesOracle 11g Invisible Indexes
Oracle 11g Invisible Indexes
 
Window functions with SQL Server 2016
Window functions with SQL Server 2016Window functions with SQL Server 2016
Window functions with SQL Server 2016
 
Part3 Explain the Explain Plan
Part3 Explain the Explain PlanPart3 Explain the Explain Plan
Part3 Explain the Explain Plan
 
Ejb5
Ejb5Ejb5
Ejb5
 
Advanced dot net
Advanced dot netAdvanced dot net
Advanced dot net
 
Oracle - Program with PL/SQL - Lession 05
Oracle - Program with PL/SQL - Lession 05Oracle - Program with PL/SQL - Lession 05
Oracle - Program with PL/SQL - Lession 05
 
Web Developer make the most out of your Database !
Web Developer make the most out of your Database !Web Developer make the most out of your Database !
Web Developer make the most out of your Database !
 

Viewers also liked

Эстрада жұлдыздары
Эстрада жұлдыздарыЭстрада жұлдыздары
Эстрада жұлдыздарыBilim All
 
Yeosh Bendayan - Push Button Productions
Yeosh Bendayan - Push Button ProductionsYeosh Bendayan - Push Button Productions
Yeosh Bendayan - Push Button ProductionsFPRAGNV
 
DHBA Newsletter Vol. 10 Issue 6
DHBA Newsletter Vol. 10 Issue 6DHBA Newsletter Vol. 10 Issue 6
DHBA Newsletter Vol. 10 Issue 6Jazmin Zamarripa
 
công ty làm phim quảng cáo tốt nhất
công ty làm phim quảng cáo tốt nhấtcông ty làm phim quảng cáo tốt nhất
công ty làm phim quảng cáo tốt nhấtnorman497
 
HE WHO FINDETH A WILD CAT
HE WHO FINDETH A WILD CATHE WHO FINDETH A WILD CAT
HE WHO FINDETH A WILD CATAaron Oteze
 
Fairfax 2015 World Police & Fire Games Official Athlete Entry Book
Fairfax 2015 World Police & Fire Games Official Athlete Entry BookFairfax 2015 World Police & Fire Games Official Athlete Entry Book
Fairfax 2015 World Police & Fire Games Official Athlete Entry BookRobert Asperheim
 
013115IRH_SeniorExecutiveLiving
013115IRH_SeniorExecutiveLiving013115IRH_SeniorExecutiveLiving
013115IRH_SeniorExecutiveLivingBeth Baumann
 
VolunteerAR2005-JLuetzowForNationalCity
VolunteerAR2005-JLuetzowForNationalCityVolunteerAR2005-JLuetzowForNationalCity
VolunteerAR2005-JLuetzowForNationalCityJessica Luetzow, M.A.
 
Gost r 53938 2010
Gost r 53938 2010Gost r 53938 2010
Gost r 53938 2010Raphael254
 
Schisina Ghost Villages, Sicily
Schisina Ghost Villages, SicilySchisina Ghost Villages, Sicily
Schisina Ghost Villages, SicilyRossellaScalia
 
01. instalasi software oracle database
01. instalasi software oracle database01. instalasi software oracle database
01. instalasi software oracle databaseGitta Safitri
 
My last vacations
My last vacations My last vacations
My last vacations Angie Tovar
 

Viewers also liked (16)

Эстрада жұлдыздары
Эстрада жұлдыздарыЭстрада жұлдыздары
Эстрада жұлдыздары
 
Yeosh Bendayan - Push Button Productions
Yeosh Bendayan - Push Button ProductionsYeosh Bendayan - Push Button Productions
Yeosh Bendayan - Push Button Productions
 
DHBA Newsletter Vol. 10 Issue 6
DHBA Newsletter Vol. 10 Issue 6DHBA Newsletter Vol. 10 Issue 6
DHBA Newsletter Vol. 10 Issue 6
 
công ty làm phim quảng cáo tốt nhất
công ty làm phim quảng cáo tốt nhấtcông ty làm phim quảng cáo tốt nhất
công ty làm phim quảng cáo tốt nhất
 
HE WHO FINDETH A WILD CAT
HE WHO FINDETH A WILD CATHE WHO FINDETH A WILD CAT
HE WHO FINDETH A WILD CAT
 
AnaStan
AnaStanAnaStan
AnaStan
 
Fairfax 2015 World Police & Fire Games Official Athlete Entry Book
Fairfax 2015 World Police & Fire Games Official Athlete Entry BookFairfax 2015 World Police & Fire Games Official Athlete Entry Book
Fairfax 2015 World Police & Fire Games Official Athlete Entry Book
 
Introduction to programming
Introduction to programmingIntroduction to programming
Introduction to programming
 
Preguntas analizadas lenguaje saber 9
Preguntas analizadas lenguaje saber 9Preguntas analizadas lenguaje saber 9
Preguntas analizadas lenguaje saber 9
 
013115IRH_SeniorExecutiveLiving
013115IRH_SeniorExecutiveLiving013115IRH_SeniorExecutiveLiving
013115IRH_SeniorExecutiveLiving
 
VolunteerAR2005-JLuetzowForNationalCity
VolunteerAR2005-JLuetzowForNationalCityVolunteerAR2005-JLuetzowForNationalCity
VolunteerAR2005-JLuetzowForNationalCity
 
Gost r 53938 2010
Gost r 53938 2010Gost r 53938 2010
Gost r 53938 2010
 
Schisina Ghost Villages, Sicily
Schisina Ghost Villages, SicilySchisina Ghost Villages, Sicily
Schisina Ghost Villages, Sicily
 
01. instalasi software oracle database
01. instalasi software oracle database01. instalasi software oracle database
01. instalasi software oracle database
 
My last vacations
My last vacations My last vacations
My last vacations
 
Zabrze
ZabrzeZabrze
Zabrze
 

Similar to Meet the CBO in Version 11g

SQL Performance Solutions: Refactor Mercilessly, Index Wisely
SQL Performance Solutions: Refactor Mercilessly, Index WiselySQL Performance Solutions: Refactor Mercilessly, Index Wisely
SQL Performance Solutions: Refactor Mercilessly, Index WiselyEnkitec
 
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...Julian Hyde
 
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...Jürgen Ambrosi
 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management Systemsweetysweety8
 
Enhancements that will make your sql database roar sp1 edition sql bits 2017
Enhancements that will make your sql database roar sp1 edition sql bits 2017Enhancements that will make your sql database roar sp1 edition sql bits 2017
Enhancements that will make your sql database roar sp1 edition sql bits 2017Bob Ward
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Alex Zaballa
 
Whose fault is it? - a review of application tuning problems
Whose fault is it? - a review of application tuning problemsWhose fault is it? - a review of application tuning problems
Whose fault is it? - a review of application tuning problemsSage Computing Services
 
Evolutionary db development
Evolutionary db development Evolutionary db development
Evolutionary db development Open Party
 
Vpd Virtual Private Database By Saurabh
Vpd   Virtual Private Database By SaurabhVpd   Virtual Private Database By Saurabh
Vpd Virtual Private Database By Saurabhguestd83b546
 
Declarative presentations UIKonf
Declarative presentations UIKonfDeclarative presentations UIKonf
Declarative presentations UIKonfNataliya Patsovska
 
Performance tuning
Performance tuningPerformance tuning
Performance tuningami111
 
Advance Sql Server Store procedure Presentation
Advance Sql Server Store procedure PresentationAdvance Sql Server Store procedure Presentation
Advance Sql Server Store procedure PresentationAmin Uddin
 
SQL Optimization With Trace Data And Dbms Xplan V6
SQL Optimization With Trace Data And Dbms Xplan V6SQL Optimization With Trace Data And Dbms Xplan V6
SQL Optimization With Trace Data And Dbms Xplan V6Mahesh Vallampati
 
Oracle_Analytical_function.pdf
Oracle_Analytical_function.pdfOracle_Analytical_function.pdf
Oracle_Analytical_function.pdfKalyankumarVenkat1
 
Sql tuning guideline
Sql tuning guidelineSql tuning guideline
Sql tuning guidelineSidney Chen
 
1-What are the opportunities and threats that could impact the org
1-What are the opportunities and threats that could impact the org1-What are the opportunities and threats that could impact the org
1-What are the opportunities and threats that could impact the orgAbbyWhyte974
 

Similar to Meet the CBO in Version 11g (20)

Jsf intro
Jsf introJsf intro
Jsf intro
 
SQL Performance Solutions: Refactor Mercilessly, Index Wisely
SQL Performance Solutions: Refactor Mercilessly, Index WiselySQL Performance Solutions: Refactor Mercilessly, Index Wisely
SQL Performance Solutions: Refactor Mercilessly, Index Wisely
 
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
Smarter Together - Bringing Relational Algebra, Powered by Apache Calcite, in...
 
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...
2° Ciclo Microsoft CRUI 3° Sessione: l'evoluzione delle piattaforme tecnologi...
 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management System
 
Enhancements that will make your sql database roar sp1 edition sql bits 2017
Enhancements that will make your sql database roar sp1 edition sql bits 2017Enhancements that will make your sql database roar sp1 edition sql bits 2017
Enhancements that will make your sql database roar sp1 edition sql bits 2017
 
Oracle SQL Tuning
Oracle SQL TuningOracle SQL Tuning
Oracle SQL Tuning
 
Unit 3
Unit 3Unit 3
Unit 3
 
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
Oracle Database 12c - The Best Oracle Database 12c Tuning Features for Develo...
 
Whose fault is it? - a review of application tuning problems
Whose fault is it? - a review of application tuning problemsWhose fault is it? - a review of application tuning problems
Whose fault is it? - a review of application tuning problems
 
Evolutionary db development
Evolutionary db development Evolutionary db development
Evolutionary db development
 
Vpd Virtual Private Database By Saurabh
Vpd   Virtual Private Database By SaurabhVpd   Virtual Private Database By Saurabh
Vpd Virtual Private Database By Saurabh
 
Declarative presentations UIKonf
Declarative presentations UIKonfDeclarative presentations UIKonf
Declarative presentations UIKonf
 
Performance tuning
Performance tuningPerformance tuning
Performance tuning
 
Advance Sql Server Store procedure Presentation
Advance Sql Server Store procedure PresentationAdvance Sql Server Store procedure Presentation
Advance Sql Server Store procedure Presentation
 
SQL Optimization With Trace Data And Dbms Xplan V6
SQL Optimization With Trace Data And Dbms Xplan V6SQL Optimization With Trace Data And Dbms Xplan V6
SQL Optimization With Trace Data And Dbms Xplan V6
 
Oracle_Analytical_function.pdf
Oracle_Analytical_function.pdfOracle_Analytical_function.pdf
Oracle_Analytical_function.pdf
 
Cdc
CdcCdc
Cdc
 
Sql tuning guideline
Sql tuning guidelineSql tuning guideline
Sql tuning guideline
 
1-What are the opportunities and threats that could impact the org
1-What are the opportunities and threats that could impact the org1-What are the opportunities and threats that could impact the org
1-What are the opportunities and threats that could impact the org
 

More from Sage Computing Services

Bind Peeking - The Endless Tuning Nightmare
Bind Peeking - The Endless Tuning NightmareBind Peeking - The Endless Tuning Nightmare
Bind Peeking - The Endless Tuning NightmareSage Computing Services
 
Back to basics: Simple database web services without the need for SOA
Back to basics: Simple database web services without the need for SOABack to basics: Simple database web services without the need for SOA
Back to basics: Simple database web services without the need for SOASage Computing Services
 
New Tuning Features in Oracle 11g - How to make your database as boring as po...
New Tuning Features in Oracle 11g - How to make your database as boring as po...New Tuning Features in Oracle 11g - How to make your database as boring as po...
New Tuning Features in Oracle 11g - How to make your database as boring as po...Sage Computing Services
 
How Can I tune it When I Can't Change the Code?
How Can I tune it When I Can't Change the Code?How Can I tune it When I Can't Change the Code?
How Can I tune it When I Can't Change the Code?Sage Computing Services
 
Take a load off! Load testing your Oracle APEX or JDeveloper web applications
Take a load off! Load testing your Oracle APEX or JDeveloper web applicationsTake a load off! Load testing your Oracle APEX or JDeveloper web applications
Take a load off! Load testing your Oracle APEX or JDeveloper web applicationsSage Computing Services
 
Transformations - how Oracle rewrites your statements
Transformations - how Oracle rewrites your statementsTransformations - how Oracle rewrites your statements
Transformations - how Oracle rewrites your statementsSage Computing Services
 
Application Express - A web development environment for the masses - and for ...
Application Express - A web development environment for the masses - and for ...Application Express - A web development environment for the masses - and for ...
Application Express - A web development environment for the masses - and for ...Sage Computing Services
 
Oracle Discoverer is dead - Where to next for BI?
Oracle Discoverer is dead - Where to next for BI?Oracle Discoverer is dead - Where to next for BI?
Oracle Discoverer is dead - Where to next for BI?Sage Computing Services
 

More from Sage Computing Services (15)

Oracle XML DB - What's in it for me?
Oracle XML DB - What's in it for me?Oracle XML DB - What's in it for me?
Oracle XML DB - What's in it for me?
 
Aspects of 10 Tuning
Aspects of 10 TuningAspects of 10 Tuning
Aspects of 10 Tuning
 
Bind Peeking - The Endless Tuning Nightmare
Bind Peeking - The Endless Tuning NightmareBind Peeking - The Endless Tuning Nightmare
Bind Peeking - The Endless Tuning Nightmare
 
Back to basics: Simple database web services without the need for SOA
Back to basics: Simple database web services without the need for SOABack to basics: Simple database web services without the need for SOA
Back to basics: Simple database web services without the need for SOA
 
Results cache
Results cacheResults cache
Results cache
 
Vpd
VpdVpd
Vpd
 
New Tuning Features in Oracle 11g - How to make your database as boring as po...
New Tuning Features in Oracle 11g - How to make your database as boring as po...New Tuning Features in Oracle 11g - How to make your database as boring as po...
New Tuning Features in Oracle 11g - How to make your database as boring as po...
 
Lost without a trace
Lost without a traceLost without a trace
Lost without a trace
 
How Can I tune it When I Can't Change the Code?
How Can I tune it When I Can't Change the Code?How Can I tune it When I Can't Change the Code?
How Can I tune it When I Can't Change the Code?
 
Take a load off! Load testing your Oracle APEX or JDeveloper web applications
Take a load off! Load testing your Oracle APEX or JDeveloper web applicationsTake a load off! Load testing your Oracle APEX or JDeveloper web applications
Take a load off! Load testing your Oracle APEX or JDeveloper web applications
 
The Cost Based Optimiser in 11gR2
The Cost Based Optimiser in 11gR2The Cost Based Optimiser in 11gR2
The Cost Based Optimiser in 11gR2
 
Transformations - how Oracle rewrites your statements
Transformations - how Oracle rewrites your statementsTransformations - how Oracle rewrites your statements
Transformations - how Oracle rewrites your statements
 
Application Express - A web development environment for the masses - and for ...
Application Express - A web development environment for the masses - and for ...Application Express - A web development environment for the masses - and for ...
Application Express - A web development environment for the masses - and for ...
 
OHarmony - How the Optimiser works
OHarmony - How the Optimiser worksOHarmony - How the Optimiser works
OHarmony - How the Optimiser works
 
Oracle Discoverer is dead - Where to next for BI?
Oracle Discoverer is dead - Where to next for BI?Oracle Discoverer is dead - Where to next for BI?
Oracle Discoverer is dead - Where to next for BI?
 

Recently uploaded

Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyAnusha Are
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...Nitya salvi
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfVishalKumarJha10
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 

Recently uploaded (20)

Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 

Meet the CBO in Version 11g

  • 1. www.sagecomputing.com.au penny@sagecomputing.com.au Meet the Cost Based Optimiser in 11g Penny Cookson SAGE Computing Services SAGE Computing Services Customised Oracle Training Workshops and Consulting
  • 2. SAGE Computing Services Customised Oracle Training Workshops and Consulting Penny Cookson Managing Director and Principal Consultant Working with Oracle products since 1987 Oracle Magazine Educator of the Year 2004 www.sagecomputing.com.au penny@sagecomputing.com.au
  • 3. A Characteristic Problem I haven’t changed anything Its really slow this morning I did the same thing yesterday and it was fine Actually its OK now No its not Thank you so much you’ve fixed it (I haven’t done anything)
  • 4. Oracle Version < 9 SELECT COUNT(l.quantity) FROM bookings_skew l WHERE resource_code = :v1; ‘BRLG’ <Version 9 database No bind peeking Shared Pool SELECT COUNT(l.quantity) FROM bookings_skew_large l WHERE resource_code = :v1; ‘PC1’ FULL SCAN How many rows do I expect?
  • 5. Oracle Version < 9 SELECT COUNT(l.quantity) FROM bookings_skew l WHERE resource_code = :v1; ‘BRLG’ <Version 9 database No bind peeking Shared Pool SELECT COUNT(l.quantity) FROM bookings_skew_large l WHERE resource_code = :v1; ‘PC1’ FULL SCAN How many rows do I expect?
  • 6. What is Bind Peeking? SELECT COUNT(l.quantity) FROM bookings_skew l WHERE resource_code = :v1; ‘PC1’ >=Version 9 database Bind peeking Shared Pool SELECT COUNT(l.quantity) FROM bookings_skew l WHERE resource_code = :v1; ‘BRLG’ INDEXED ACCESS How many rows do I expect?
  • 7. Histogram – Minority First *************************************** SINGLE TABLE ACCESS PATH Column (#3): RESOURCE_CODE(VARCHAR2) AvgLen: 5.00 NDV: 9 Nulls: 0 Density: 9.0892e-008 Histogram: Freq #Bkts: 9 UncompBkts: 5966 EndPtVals: 9 Table: BOOKINGS_SKEW Alias: L Card: Original: 5464800 Rounded: 43968 Computed: 43967.55 Non Adjusted: 43967.55 Access Path: TableScan Cost: 7693.35 Resp: 7693.35 Degree: 0 Cost_io: 7426.00 Cost_cpu: 1555877511 Resp_io: 7426.00 Resp_cpu: 1555877511 Access Path: index (AllEqRange) Index: BK_RESSKEW resc_io: 2399.00 resc_cpu: 37397785 ix_sel: 0.0080456 ix_sel_with_filters: 0.0080456 Cost: 2405.43 Resp: 2405.43 Degree: 1 Best:: AccessPath: IndexRange Index: BK_RESSKEW Cost: 2405.43 Degree: 1 Resp: 2405.43 Card: 43967.55 Bytes: 0 *************************************** RESO COUNT(*) ---- ---------- VCR1 495711 CONF 495720 LNCH 743576 BRSM 743583 PC1 47858 FLPC 495720 BRLG 1739277 TAP1 247864 VCR2 495715
  • 9. What is the CBO good at in 10g? Data Condition Literal/Bind Var Histogram Even Distribution Equality Literal N/A Even Distribution Equality Bind N/A Skewed Equality Literal NO Skewed Equality Literal YES Skewed Equality Bind NO Skewed Equality Bind YES Even Distribution Range Bind N/A
  • 10. Bind Peeking + Adaptive Cursors in 11g Statements with bind variables (+histograms) are bind sensitive The first time you execute a statement with different selectivity it uses the original plan The second time it changes the plan and become bind aware New values will use a plan for the appropriate selectivity range
  • 13. PLSQL has soft parse avoidance Implicit cursor Explicit cursor Native dynamic SQL Ref cursor Session_cached_cursors = 0 No default adaptive cursor functionality Default adaptive cursor functionality
  • 14. Adaptive Cursors Functionality Bind variable with Equality and Histogram Not for range conditions Bind variable with Equality and Histogram Range conditions Does not support LIKE /*+ BIND_AWARE */ Adaptive Cursors 11.1.0.6 Adaptive Cursors 11.1.0.7 and 11.2
  • 15. So where are we now? Our own code – works properly first time with hint in SQL and PL/SQL Packages – will still get it wrong once and won’t use adaptive cursors for PL/SQL at all unless we set session cached cursors =0
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 25. Bind Peeking + Adaptive Cursors Summary Your code Packages Minimise statement invalidations Consider running the statement with minority and majority value on start up Use the BIND_AWARE hint (SQL and PL/SQL) for skewed data Use ref cursors (if hints are not allowed) ?manually hack an outline/profile PL/SQL – set session_cached_cursors = 0 (temporarily)
  • 26. Adaptive Cursors What we Really Need Once a statement has been bind aware it knows next time its parsed ?SQL *Profile to indicate bind aware Adaptive Cursors Persistence
  • 27. Try to get rid of your hints _optimizer_ignore_hints Create additional statistics Set _optimizer_ignore_hints to TRUE Test the app If it runs OK remove your hints
  • 28. 58 New Hints SELECT name, inverse, sql_feature, version FROM v$sql_hint WHERE version like '11%' ORDER BY version desc, name New Hints
  • 29. New Hints IGNORE_ROW_ON_DUPKEY_INDEX This has nothing to do with optimisation I just like it
  • 30. New Hints MONITOR NO_MONITOR select /*+ MONITOR */ count(comments) from bookings ; select DBMS_SQLTUNE.REPORT_SQL_MONITOR( session_id=>sys_context('userenv','sid'), report_level=>'ALL') as report from dual;
  • 31. Much More Query Transformation SELECT e.event_no, e.start_date, sum(cost) totcost FROM events_large e, bookings_large b WHERE e.event_no = b.event_no GROUP BY e.event_no, e.start_date alter session set tracefile_identifier = Penny alter session set events '10053 trace name context forever' explain plan for SELECT e.event_no, e.start_date, sum(cost) totcost FROM events_large e, bookings_large b WHERE e.event_no = b.event_no GROUP BY e.event_no, e.start_date; alter session set events '10053 trace name context off'
  • 32. Much More Query Transformation SELECT e.event_no, e.start_date, sum(cost) totcost FROM events_large e, bookings_large b WHERE e.event_no = b.event_no GROUP BY e.event_no, e.start_date
  • 33. 10G – JOIN before the GROUP BY
  • 34.
  • 35. 11G – GROUP BY before the JOIN
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41. 10G – NOT IN (PROMISE_NO NULLABLE)
  • 42. 10G – KILLED AFTER 1 hr
  • 43. 11G – Rewrite as Null Aware Anti join
  • 44.
  • 45. 10G – Full Outer Join – default behaviour
  • 46.
  • 47. From version 10.2.0.3 SELECT /*+ NATIVE_FULL_OUTER_JOIN */ count(e.comments) nume, count (b.comments) numb FROM events_large e FULL OUTER JOIN bookings_large b ON (e.event_no = b.event_no) 10G – Full Outer Join – hint
  • 48. 11G Native Full Outer Join
  • 49.
  • 50. Check the differences in plans Upgrading
  • 51.
  • 52.
  • 53.
  • 54. Oracle 10g – Run a whole load of random statements – all of which require parsing
  • 55. Oracle 11g – Run a whole load of random statements – all of which require parsing So Tuning the Shared Pool becomes more important, but overall the 11g CBO is pretty smart
  • 56. Results Cache SGA populate invalidate Most recently used SQL/PL/SQL SQL Query Results Cache Results Cache PL/SQL Function Results Cache Most recently used result sets Buffer Cache Library Cache Most recently data
  • 57. Query Results Cache RESULT_CACHE_MODE MANUAL FORCE /*+RESULT_CACHE */ /*+ NO_RESULT_CACHE */ SELECT /*+ RESULT_CACHE */ count(b.comments) FROM train1.events_large e, train1.bookings_large b WHERE e.org_id = :v1 AND e.event_no = b.event_no AND e.comments = :v2;
  • 58. PL/SQL Function Results Cache CREATE OR REPLACE FUNCTION quantity_booked (p_resource_code in resources.code%TYPE,p_event_date in date) RETURN NUMBER RESULT_CACHE IS v_total_booked number := 0; BEGIN SELECT sum(b.quantity) INTO v_total_booked FROM bookings b, events e WHERE e.event_no = b.event_no AND p_event_date between e.start_date and e.end_date AND b.resource_code = p_resource_code; RETURN (v_total_booked); END;
  • 59. Monitoring the Results Cache SELECT * FROM v$result_cache_memory SELECT * FROM v$result_cache_objects SELECT * FROM v$result_cache_statistics SELECT * FROM v$result_cache_dependency RESULT_CACHE_MAX_SIZE RESULT_CACHE_MAX_RESULT Explain Plan
  • 60.
  • 61. Setting Statistics Gathering Defaults GET_PARAM SET_PARAM Procedure GET_PREFS Function SET_TABLE_PREFS (set for individual tables) SET_DATABASE_PREFS (sets for all tables, can include/exclude SYS tables) SET_GLOBAL_PREFS – for new objects Obsolete: Use:
  • 62. Gathering Statistics Early CBO: “Make sure you gather statistics regularly” Later CBO: “Don’t gather statistics unless data patterns change” BUT If you have new majority values you need to recreate the histogram
  • 63. Gathering and Publishing Set preferences to PUBLISH = ‘FALSE’ Gather Statistics user_tab_pending_stats user_ind_pending_stats user_col_pending_stats Run test case Alter session set optimizer_pending_statistics = TRUE Worse Better dbms_stats. delete_pending_stats dbms_stats. publish_pending_stats user_tab_statistics user_ind_statistics user_tab_col_statistics
  • 64. Gathering and Publishing SELECT obj#, TO_CHAR(savtime,'dd/mm/yyyy') save_time, rowcnt, blkcnt, avgrln, samplesize, analyzetime FROM wri$_optstat_tab_history ORDER BY savtime desc
  • 65. CBO - Instability CBO ?access path decision System parameters Session parameters Optimiser StatisticsIndexes SQL Profile Software version System statistics DBA playing around
  • 66. CBO - Instability – Leave it all alone – SQL Plan Management – Store plan baseline – Plans not used till accepted – Manually accept or – Allow Oracle to evolve plans Solution 1 Solution 2
  • 67. SQL Plan Management Manual capture DBMS_SPM.LOAD_PLANS_FROM_SQLSET DBMS_SPM.LOAD_PLANS_FROM_CURSOR_CACHE Auto capture of repeatable statements OPTIMIZER_CAPTURE_SQL_PLAN_BASELINE = TRUE Baseline = (Stored and Accepted plans) SQL Management Base New Plan identified during execution Stored not accepted SQL Tuning Advisor identifies new plan – SQL*Profile accepted Auto accept of new plan (if it performs better) DBMS_SPM.EVOLVE_SQL_PLAN_BASELINE Manual load/accept of new plan DBMS_SPM.LOAD_PLANS_FROM_SQLSET DBMS_SPM.LOAD_PLANS_FROM_CURSOR_CACHE
  • 69. SAGE Computing Services Customised Oracle Training Workshops and Consulting Questions? www.sagecomputing.com.au penny@sagecomputing.com.au