SlideShare a Scribd company logo
12 THINGS EVERY
ORACLE DBA AND
DEVELOPER SHOULD
KNOW ABOUT SQL
IGGY FERNANDEZ
EDITOR,
NoCOUG JOURNAL
INTRODUCTION
» Editor of the NoCOUG Journal (Archive)
» Presentation based on The Twelve Days of SQL blog
series
» Also read The Twelve Days of NoSQL blog series
» New blog series: The Hitchhiker’s Guide to the
EXPLAIN PLAN (ToadWorld)
12 things Oracle DBAs must know about SQL
TOP TIPS
» Buy every book by Steven Faroult
 The Art of SQL
 Refactoring SQL Applications
 SQL Success (New)
» Follow my ToadWorld blog
 Hitchhiker’s Guide to the EXPLAIN PLAN
» Install the OTN Developer Day virtual machine on your
desktop
TOP TIPS
» Buy every book by Steven Faroult
 The Art of SQL
 Refactoring SQL Applications
 SQL Success (New)
» Follow my ToadWorld blog
 Hitchhiker’s Guide to the EXPLAIN PLAN
» Install the OTN Developer Day virtual machine on your
desktop
“Those who are in love with practice without knowledge are
like the sailor who gets into a ship without rudder or
compass and who never can be certain where he is going.
Practice must always be founded on sound theory.”
—The Discourse on Painting
by Leonardo da Vinci
#1 SQL IS A NON-PROCEDURAL LANGUAGE
Charles Bachman
1973 Turing Award Winner
Dr. Edgar Codd
1981 Turing Award Winner
PATRON SAINTS OF DATABASES
HR SCHEMA
NETWORK MODEL
CHAINS
OWNER
RECORD
MEMBER
RECORD 3
MEMBER
RECORD 2
MEMBER
RECORD 1
12 things Oracle DBAs must know about SQL
THE PROGRAMMER AS NAVIGATOR
1. Sequential access
2. ROWID access
3. Primary key access
4. Secondary key access
5. Starting from the owner record, get all the records in a
chain
6. Starting from any record, get the prior and next in a
chain
7. Starting from any record, get the owner record
“Each of these access methods is interesting in itself,
and all are very useful. However, it is the synergistic
usage of the entire collection which gives the
programmer great and expanded powers to come and
go within a large database while accessing only those
records of interest in responding to inquiries and
updating the database in anticipation of future inquiries.”
—Charles Bachman
ACM Turing Award Lecture, 1973
RELATIONAL MODEL
“In the choice of logical data structures that a system is to
support, there is one consideration of absolutely paramount
importance – and that is the convenience of the majority
of users. … To make formatted data bases readily
accessible to users (especially casual users) who have
little or no training in programming we must provide the
simplest possible data structures and almost natural
language. … What could be a simpler, more universally
needed, and more universally understood data structure
than a table?”
—Dr. Edgar Codd
Normalized Data Base Structure: A Brief Tutorial (1971)
THE INTENDED AUDIENCE FOR SQL
“There is a large class of users who, while they are not
computer specialists, would be willing to learn to interact
with a computer in a reasonably high-level, non-procedural
query language. Examples of such users are accountants,
engineers, architects, and urban planners. It is for this
class of users that SEQUEL is intended.”
—Donald Chamberlin and Raymond Boyce
Sequel: A Structured English Query Language (1974)
WHAT CAN YOU EXPECT FROM A NON-
PROCEDURAL QUERY LANGUAGE?
» Oracle is not using the indexes we created.
» The query plan changes without apparent reason.
» The query ran fast yesterday but is running slowly today.
» The query ran fast a few minutes ago but is running
slowly now.
» The query runs fast in the QA database but runs slowly
in the production database.
» The query runs slower after a database upgrade.
QUERY PLAN STABILITY
» Hints
» Stored Outlines
» SQL Profiles (the SQLT version)
» SQL Plan Management
» Don’t refresh statistics?
» Don’t use bind variable peeking?
#2 SQL IS BASED ON RELATIONAL
CALCULUS AND RELATIONAL
ALGEBRA
DEFINITION OF A RELATIONAL DATABASE
“A relational database is a database in which: The data is
perceived by the user as tables (and nothing but tables)
and the operators available to the user for (for example)
retrieval are operators that derive “new” tables from “old”
ones.”
—Chris Date
An Introduction to Database Systems
RELATIONAL OPERATORS
(FUNDAMENTAL AND SUFFICIENT)
» Selection
» Projection
» Union
» Difference (Minus)
» Join (Cross Join)
ADDITIONAL RELATIONAL OPERATIONS
(DERIVABLE FROM THE FUNDAMENTAL SET)
» Inner Join
» Outer Join
» Intersection
» Semi Join
» Anti Join
» Division
THE EMPLOYEES TABLE
Name Null? Type
----------------------------------------- -------- ------------------
EMPLOYEE_ID NOT NULL NUMBER(6)
FIRST_NAME VARCHAR2(20)
LAST_NAME NOT NULL VARCHAR2(25)
EMAIL NOT NULL VARCHAR2(25)
PHONE_NUMBER VARCHAR2(20)
HIRE_DATE NOT NULL DATE
JOB_ID NOT NULL VARCHAR2(10)
SALARY NUMBER(8,2)
COMMISSION_PCT NUMBER(2,2)
MANAGER_ID NUMBER(6)
DEPARTMENT_ID NUMBER(4
THE JOB HISTORY TABLE
Name Null? Type
----------------------------------------- -------- -----
EMPLOYEE_ID NOT NULL NUMBER(6)
START_DATE NOT NULL DATE
END_DATE NOT NULL DATE
JOB_ID NOT NULL VARCHAR2(10)
DEPARTMENT_ID NUMBER(4)
THE JOBS TABLE
Name Null? Type
----------------------------------------- -------- ------------------
JOB_ID NOT NULL VARCHAR2(10)
JOB_TITLE NOT NULL VARCHAR2(35)
MIN_SALARY NUMBER(6)
MAX_SALARY NUMBER(6)
EMPLOYEES WHO HAVE HELD ALL
ACCOUNTING JOBS (RELATIONAL
CALCULUS)
SELECT employee_id FROM employees e WHERE NOT EXISTS
(
SELECT job_id FROM jobs j WHERE job_id LIKE 'AC%‘ AND NOT EXISTS
(
SELECT * FROM
(
SELECT employee_id, job_id FROM job_history
UNION
SELECT employee_id, job_id FROM employees
)
WHERE employee_id = e.employee_id AND job_id = j.job_id
)
)
EMPLOYEES WHO HAVE HELD ALL
ACCOUNTING JOBS (RELATIONAL ALGEBRA)
SELECT employee_id FROM employees
MINUS
SELECT employee_id
FROM
(SELECT employees.employee_id,
jobs.job_id
FROM employees
CROSS JOIN jobs
WHERE jobs.job_id LIKE 'AC%'
MINUS
( SELECT employee_id, job_id FROM job_history
UNION
SELECT employee_id, job_id FROM employees
)
)
EMPLOYEES WHO HAVE HELD ALL
ACCOUNTING JOBS (SUBQUERY
FACTORING)
WITH
-- Step 1: Projection
all_employees_1 AS
( SELECT employee_id FROM employees
),
-- Step 2: Projection
all_employees_2 AS
( SELECT employee_id FROM employees
),
-- Step 3: Projection
all_jobs AS
( SELECT job_id FROM jobs
),
-- Step 4: Selection
selected_jobs AS
( SELECT * FROM all_jobs WHERE job_id LIKE 'AC%'
),
-- Step 5: Join
selected_pairings AS
( SELECT * FROM all_employees_2 CROSS JOIN
selected_jobs
),
-- Step 6: Projection
current_job_titles AS
( SELECT employee_id, job_id FROM employees
),
-- Step 7: Projection
previous_job_titles AS
( SELECT employee_id, job_id FROM job_history
),
-- Step 8: Union
complete_job_history AS
( SELECT * FROM current_job_titles
UNION
SELECT * FROM previous_job_titles
),
-- Step 9: Difference
nonexistent_pairings AS
( SELECT * FROM selected_pairings
MINUS
SELECT * FROM complete_job_history
),
-- Step 10: Projection
ineligible_employees AS
( SELECT employee_id FROM nonexistent_pairings
)
-- Step 11: Difference
SELECT * FROM all_employees_1
MINUS
SELECT * FROM ineligible_employees
#3 THERE ISN’T ALWAYS A SINGLE OPTIMAL
QUERY PLAN FOR A SQL QUERY
IT DEPENDS ON WHAT THE MEANING OF THE
WORD “IS” IS
select * from employees
where first_name like 'Lex'
and last_name like 'De Haan'
select * from employees
where first_name like :b1
and last_name like :b2
#4 THE TWELVE DAYS OF SQL: THE WAY YOU
WRITE YOUR QUERY MATTERS
THE PERSONNEL TABLE
CREATE TABLE personnel
(
empid CHAR(9),
lname CHAR(15),
fname CHAR(12),
address CHAR(20),
city CHAR(20),
state CHAR(2),
ZIP CHAR(5)
);
THE PAYROLL TABLE
CREATE TABLE payroll
(
empid CHAR(9),
bonus INTEGER,
salary INTEGER
);
SOLUTION #1
RELATIONAL ALGEBRA METHOD
SELECT DISTINCT per.empid, per.lname
FROM personnel per JOIN payroll pay ON (per.empid = pay.empid)
WHERE pay.salary = 199170;
Plan hash value: 3901981856
-------------------------------------------------------
| Id | Operation | Name |
-------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | HASH UNIQUE | |
| 2 | NESTED LOOPS | |
| 3 | NESTED LOOPS | |
| 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 5 | INDEX RANGE SCAN | PAYROLL_I1 |
|* 6 | INDEX UNIQUE SCAN | PERSONNEL_U1 |
| 7 | TABLE ACCESS BY INDEX ROWID | PERSONNEL |
-------------------------------------------------------
SOLUTION #2
UNCORRELATED SUBQUERY
SELECT per.empid, per.lname
FROM personnel per
WHERE per.empid IN (SELECT pay.empid
FROM payroll pay
WHERE pay.salary = 199170);
Plan hash value: 3342999746
------------------------------------------------------
| Id | Operation | Name |
------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | NESTED LOOPS | |
| 2 | NESTED LOOPS | |
| 3 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 4 | INDEX RANGE SCAN | PAYROLL_I1 |
|* 5 | INDEX UNIQUE SCAN | PERSONNEL_U1 |
| 6 | TABLE ACCESS BY INDEX ROWID | PERSONNEL |
------------------------------------------------------
SOLUTION #3
CORRELATED SUBQUERY
SELECT per.empid, per.lname
FROM personnel per
WHERE EXISTS (SELECT *
FROM payroll pay
WHERE per.empid = pay.empid
AND pay.salary = 199170);
Plan hash value: 864898783
-------------------------------------------------------
| Id | Operation | Name |
-------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | NESTED LOOPS | |
| 2 | NESTED LOOPS | |
| 3 | SORT UNIQUE | |
| 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 5 | INDEX RANGE SCAN | PAYROLL_I1 |
|* 6 | INDEX UNIQUE SCAN | PERSONNEL_U1 |
| 7 | TABLE ACCESS BY INDEX ROWID | PERSONNEL |
-------------------------------------------------------
SOLUTION #4
SCALAR SUBQUERY IN THE WHERE CLAUSE
SELECT per.empid, per.lname
FROM personnel per
WHERE (SELECT pay.salary FROM payroll pay WHERE pay.empid = per.empid) =
199170;
Plan hash value: 3607962630
---------------------------------------------------
| Id | Operation | Name |
---------------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | FILTER | |
| 2 | TABLE ACCESS FULL | PERSONNEL |
| 3 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 4 | INDEX UNIQUE SCAN | PAYROLL_U1 |
---------------------------------------------------
1 - filter(=199170)
4 - access("PAY"."EMPID"=:B1)
SOLUTION #5
SCALAR SUBQUERY IN THE SELECT CLAUSE
SELECT DISTINCT pay.empid, (SELECT lname FROM personnel per WHERE per.empid
= pay.empid)
FROM payroll pay
WHERE pay.salary = 199170;
Plan hash value: 750911849
-----------------------------------------------------
| Id | Operation | Name |
-----------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | TABLE ACCESS BY INDEX ROWID | PERSONNEL |
|* 2 | INDEX UNIQUE SCAN | PERSONNEL_U1 |
| 3 | HASH UNIQUE | |
| 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 5 | INDEX RANGE SCAN | PAYROLL_I1 |
-----------------------------------------------------
2 - access("PER"."EMPID"=:B1)
5 - access("PAY"."SALARY"=199170)
SOLUTION #6
AGGREGATE FUNCTION TO CHECK
EXISTENCE
SELECT per.empid, per.lname
FROM personnel per
WHERE (SELECT count(*) FROM payroll pay WHERE pay.empid = per.empid AND
pay.salary = 199170) > 0;
Plan hash value: 3561519015
----------------------------------------------------
| Id | Operation | Name |
----------------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | FILTER | |
| 2 | TABLE ACCESS FULL | PERSONNEL |
| 3 | SORT AGGREGATE | |
|* 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL |
|* 5 | INDEX UNIQUE SCAN | PAYROLL_U1 |
----------------------------------------------------
1 - filter(>0)
4 - filter("PAY"."SALARY"=199170)
5 - access("PAY"."EMPID"=:B1)
SOLUTION #7
CORRELATED SUBQUERY (DOUBLE
NEGATIVE)
SELECT per.empid, per.lname
FROM personnel per
WHERE NOT EXISTS (SELECT *
FROM payroll pay
WHERE pay.empid = per.empid
AND pay.salary != 199170);
Plan hash value: 103534934
------------------------------------------
| Id | Operation | Name |
------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | HASH JOIN RIGHT ANTI| |
|* 2 | TABLE ACCESS FULL | PAYROLL |
| 3 | TABLE ACCESS FULL | PERSONNEL |
------------------------------------------
1 - access("PAY"."EMPID"="PER"."EMPID")
2 - filter("PAY"."SALARY"<>199170)
SOLUTION #8
UNCORRELATED SUBQUERY (DOUBLE
NEGATIVE)
SELECT per.empid, per.lname
FROM personnel per
WHERE per.empid NOT IN (SELECT pay.empid
FROM payroll pay
WHERE pay.salary != 199170);
Plan hash value: 2202369223
---------------------------------------------
| Id | Operation | Name |
---------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | HASH JOIN RIGHT ANTI NA| |
|* 2 | TABLE ACCESS FULL | PAYROLL |
| 3 | TABLE ACCESS FULL | PERSONNEL |
---------------------------------------------
1 - access("PER"."EMPID"="PAY"."EMPID")
2 - filter("PAY"."SALARY"<>199170)
COMPARISON (11G RELEASE 2)
METHOD Plan Hash Elapsed Buffer Gets
(us)
--------------------------------------- ---------- ------- -----------
Uncorrelated subquery 3342999746 129 17
Correlated subquery 864898783 405 16
Relational algebra method 3901981856 426 16
Scalar subquery in the SELECT clause 750911849 701 16
Uncorrelated subquery (double negative) 2202369223 7702 241
Correlated subquery (double negative) 103534934 14499 241
Scalar subquery in the WHERE clause 3607962630 195999 10549
Aggregate function to check existence 3561519015 310690 10554
#8 STATISTICS ARE A DOUBLE-EDGED SWORD
“Oh, and by the way, could you please stop
gathering statistics constantly? I don’t
know much about databases, but I do
think I know the following: small tables
tend to stay small, large tables tend to stay
large, unique indexes have a tendency to
stay unique, and non-unique indexes often
stay non-unique.”
—Dave Ensor
(as remembered by Mogens Norgaard)
Statistics: How and When?
November 2010 issue of the NoCOUG
Journal
“Monitor the changes in execution plans
and/or performance for the individual SQL
statements … and perhaps as a
consequence re-gather stats. That way,
you’d leave stuff alone that works very
well, thank you, and you’d put your efforts
into exactly the things that have become
worse.”
—Mogens Norgaard
Statistics: How and When?
November 2010 issue of the NoCOUG
Journal
“There are some statistics about your data
that can be left unchanged for a long time,
possibly forever; there are some statistics
that need to be changed periodically; and
there are some statistics that need to be
changed constantly. … The biggest
problem is that you need to understand
the data.”
—Jonathan Lewis
Statistics: How and When?
November 2010 issue of the NoCOUG
Journal
“It astonishes me how many shops prohibit
any un-approved production changes and
yet re-analyze schema stats weekly.
Evidently, they do not understand that the
[possible consequence] of schema re-
analysis is to change their production SQL
execution plans, and they act surprised
when performance changes!”
—Don Burleson
Statistics: How and When?
November 2010 issue of the NoCOUG
Journal
#9 PHYSICAL DATABASE DESIGN MATTERS
“If a schema has no IOTs or clusters, that is a good
indication that no thought has been given to the matter of
optimizing data access.”
—Tom Kyte (quoting Steve Adams)
Effective Oracle by Design (page 379)
THE NOSQL COMPLAINT
“Using tables to store objects is like driving your car home and
then disassembling it to put it in the garage. It can be assembled
again in the morning, but one eventually asks whether this is the
most efficient way to park a car.”
—incorrectly attributed to Esther Dyson
Editor of Release 1.0
“You can keep a car in a file cabinet because you can file the
engine components in files in one drawer, and the axles and
things in another, and keep a list of how everything fits together.
You can, but you wouldn’t want to.”
—Esther Dyson
September 1989 issue of Release 1.0
DEMONSTRATION
Refer to the blog post The Twelve Days of NoSQL: Day
Six: The False Premise of NoSQL
#10 SOMETIMES THE OPTIMIZER NEEDS A HINT
WHO SAID THAT?
“No optimizer is perfect and directives such as Oracle’s
hints provide the simplest workaround [in] situations in
which the optimizer has chosen a suboptimal plan.
Hints are useful tools not just to remedy an occasional
suboptimal plan, but also for users who want to
experiment with access paths, or simply have full
control over the execution of a query.”
1. Homer Simpson
2. Dr. Edgar Codd (the inventor of relational database
theory)
3. Oracle white paper by Maria Colgan and Fred Lumpkin
SUGGESTIONS FROM DAN TOW
» Oracle’s Cost-based Optimizer (CBO) does a perfectly good job on
most SQL, requiring no manual tuning for most SQL.
» The CBO must parse quickly, use the data and indexes that it has,
make assumptions about what it does not know, and deliver exactly
the result that the SQL calls for.
» On a small fraction of the SQL, the constraints on the CBO result in
a performance problem.
» Find SQL worth tuning, ignoring the great majority that already
performs just fine.
» Find the true optimum execution plan (or at least one you verify is
fast enough), manually, without the CBO’s constraints or
assumptions.
» Compare your manually chosen execution plan, and its resulting
performance, with the CBO’s plan and consider why the CBO did
not select your plan, if it did not.
» Choose a solution that solves the problem.
#11 AWR AND STATSPACK ARE A GOLDMINE OF
HISTORICAL PERFORMANCE DATA
12 things Oracle DBAs must know about SQL
12 things Oracle DBAs must know about SQL
#12 READERS DO NOT BLOCK WRITERS;
WRITERS DO NOT BLOCK READERS
SERIALIZABILITY
“To describe consistent transaction behavior when
transactions run at the same time, database researchers
have defined a transaction isolation model called
serializability. The serializable mode of transaction behavior
tries to ensure that transactions run in such a way that they
appear to be executed one at a time, or serially, rather
than concurrently.”
—Oracle documentation up to 11g Release 1
DEMONSTRATION
create table parent (
parent_name varchar(8)
);
create table child (
child_name varchar(8),
parent_name varchar(8)
);
insert into parent values('Warbucks');
commit;
18:25:07 TRANSACTION A> alter session set
isolation_level=serializable;
Session altered.
18:25:07 TRANSACTION A> select * from parent where
parent_name='Warbucks';
1 row selected.
18:25:16 TRANSACTION B> alter session set
isolation_level=serializable;
Session altered.
18:25:16 TRANSACTION B> select * from child where
parent_name='Warbucks';
no rows selected
18:25:19 TRANSACTION A> insert into child values
('Annie','Warbucks');
1 row created.
18:25:21 TRANSACTION B> delete from parent where
parent_name='Warbucks';
1 row deleted.
18:25:23 TRANSACTION A> commit;
Commit complete.
18:25:25 TRANSACTION B> commit;
Commit complete.
Based on the blog post Day 12: The Twelve Days of SQL:
Readers do not block writers; writers do not block readers
#7 EXPLAIN PLAN LIES (SO DOES
AUTOTRACE)
WHAT ABOUT …
» Bind variables
» Adaptive cursor sharing
» Cardinality feedback
» Adaptive query optimization
#5 THE QUERY COST IS ONLY AN ESTIMATE
#6 THE EXECUTION PLAN IS A TREE
HOW TO READ EXPLAIN PLAN OUTPUT
(NOT!)
“The execution order in EXPLAIN PLAN output begins with
the line that is the furthest indented to the right. The next
step is the parent of that line. If two lines are indented
equally, then the top line is normally executed first.”
—Oracle documentation
THE REAL SCOOP
An Oracle EXPLAIN PLAN is a “tree” structure
corresponding to a relational algebra expression. It is
printed in “pre-order” sequence (visit the root of the tree,
then traverse each subtree—if any—in pre-order
sequence) but should be read in “post-order” sequence
(first traverse each subtree—if any—in post-order
sequence, then only visit the root of the tree).
12 things Oracle DBAs must know about SQL
12 things Oracle DBAs must know about SQL
12 things Oracle DBAs must know about SQL
----------------------------------------------------------------
| Id | Operation | Name |
----------------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | MINUS | |
| 2 | SORT UNIQUE NOSORT | |
| 3 | INDEX FULL SCAN | EMP_EMP_ID_PK |
| 4 | SORT UNIQUE | |
| 5 | VIEW | |
| 6 | MINUS | |
| 7 | SORT UNIQUE | |
| 8 | MERGE JOIN CARTESIAN | |
| 9 | INDEX RANGE SCAN | JOB_ID_PK |
| 10 | BUFFER SORT | |
| 11 | INDEX FAST FULL SCAN | EMP_EMP_ID_PK |
| 12 | SORT UNIQUE | |
| 13 | UNION-ALL | |
| 14 | VIEW | index$_join$_006 |
| 15 | HASH JOIN | |
| 16 | INDEX FAST FULL SCAN| JHIST_EMP_ID_ST_DATE_PK |
| 17 | INDEX FAST FULL SCAN| JHIST_JOB_IX |
| 18 | VIEW | index$_join$_007 |
| 19 | HASH JOIN | |
| 20 | INDEX FAST FULL SCAN| EMP_EMP_ID_PK |
| 21 | INDEX FAST FULL SCAN| EMP_JOB_IX |
----------------------------------------------------------------
12 things Oracle DBAs must know about SQL
12 things Oracle DBAs must know about SQL
SELECT
e.first_name, e.last_name, e.salary,
j.job_title,
d.department_name,
l.city, l.state_province,
c.country_name,
r.region_name
FROM employees e, jobs j, departments d, locations l, countries c, regions r
WHERE
e.department_id = 90
AND j.job_id = e.job_id
AND d.department_id = e.department_id
AND l.location_id = d.location_id
AND c.country_id = l.country_id
AND r.region_id = c.region_id;
HINTS FOR DEEP LEFT TREE
LEADING (e j d l c r)
USE_NL(j)
USE_NL(d)
USE_NL(l)
USE_NL(c)
USE_NL(r)
DEEP LEFT TREE
---------------------------------------------------------------
| Id | Operation | Name |
---------------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | NESTED LOOPS | |
| 2 | NESTED LOOPS | |
| 3 | NESTED LOOPS | |
| 4 | NESTED LOOPS | |
| 5 | NESTED LOOPS | |
| 6 | NESTED LOOPS | |
| 7 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES |
|* 8 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX |
| 9 | TABLE ACCESS BY INDEX ROWID| JOBS |
|* 10 | INDEX UNIQUE SCAN | JOB_ID_PK |
| 11 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS |
|* 12 | INDEX UNIQUE SCAN | DEPT_ID_PK |
| 13 | TABLE ACCESS BY INDEX ROWID | LOCATIONS |
|* 14 | INDEX UNIQUE SCAN | LOC_ID_PK |
|* 15 | INDEX UNIQUE SCAN | COUNTRY_C_ID_PK |
|* 16 | INDEX UNIQUE SCAN | REG_ID_PK |
| 17 | TABLE ACCESS BY INDEX ROWID | REGIONS |
---------------------------------------------------------------
12 things Oracle DBAs must know about SQL
HINTS FOR DEEP RIGHT TREE
LEADING (e j d l c r)
USE_HASH(j) SWAP_JOIN_INPUTS(j)
USE_HASH(d) SWAP_JOIN_INPUTS(d)
USE_HASH(l) SWAP_JOIN_INPUTS(l)
USE_HASH(c) SWAP_JOIN_INPUTS(c)
USE_HASH(r) SWAP_JOIN_INPUTS(r)
DEEP RIGHT TREE
--------------------------------------------------------------
| Id | Operation | Name |
--------------------------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | HASH JOIN | |
| 2 | TABLE ACCESS FULL | REGIONS |
|* 3 | HASH JOIN | |
| 4 | INDEX FAST FULL SCAN | COUNTRY_C_ID_PK |
|* 5 | HASH JOIN | |
| 6 | TABLE ACCESS FULL | LOCATIONS |
|* 7 | HASH JOIN | |
| 8 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS |
|* 9 | INDEX UNIQUE SCAN | DEPT_ID_PK |
|* 10 | HASH JOIN | |
| 11 | TABLE ACCESS FULL | JOBS |
| 12 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES |
|* 13 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX |
--------------------------------------------------------------
12 things Oracle DBAs must know about SQL
HINTS FOR ZIG-ZAG TREE
LEADING (e j d l c r)
USE_HASH(j) SWAP_JOIN_INPUTS(j)
USE_HASH(d) NO_SWAP_JOIN_INPUTS(d)
USE_HASH(l) SWAP_JOIN_INPUTS(l)
USE_HASH(c) NO_SWAP_JOIN_INPUTS(c)
USE_HASH(r) SWAP_JOIN_INPUTS(r)
EXPLAIN PLAN FOR ZIG-ZAG TREE
--------------------------------------------------------------
| Id | Operation | Name |
--------------------------------------------------------------
| 0 | SELECT STATEMENT | |
|* 1 | HASH JOIN | |
| 2 | TABLE ACCESS FULL | REGIONS |
|* 3 | HASH JOIN | |
|* 4 | HASH JOIN | |
| 5 | TABLE ACCESS FULL | LOCATIONS |
|* 6 | HASH JOIN | |
|* 7 | HASH JOIN | |
| 8 | TABLE ACCESS FULL | JOBS |
| 9 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES |
|* 10 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX |
| 11 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS |
|* 12 | INDEX UNIQUE SCAN | DEPT_ID_PK |
| 13 | INDEX FAST FULL SCAN | COUNTRY_C_ID_PK |
--------------------------------------------------------------
12 things Oracle DBAs must know about SQL
BUSHY TREE (INLINE VIEW)SELECT /*+ LEADING(e j d) USE_NL(j) USE_NL(d) */
e.first_name, e.last_name, e.salary,
j.job_title,
d.department_name, d.city, d.state_province, d.country_name, d.region_name
FROM
employees e,
jobs j,
(
SELECT /*+ NO_MERGE */
d.department_id, d.department_name,
l.city, l.state_province,
c.country_name,
r.region_name
FROM departments d, locations l, countries c, regions r
WHERE l.location_id = d.location_id
AND c.country_id = l.country_id
AND r.region_id = c.region_id
) d
WHERE e.department_id = 90
AND j.job_id = e.job_id
AND d.department_id = e.department_id;
12 things Oracle DBAs must know about SQL
BUSHY TREES
» (A B) C) D
» (A (B C)) D
» (A B) (C D)
» A ((B C) D)
» A (B (C D))
TOTAL NUMBER OF TREES
N FACTORIAL(N) CATALAN(N-1) Total trees
2 2 1 2
3 6 2 12
4 24 5 120
5 120 14 1,680
6 720 42 30,240
7 5,040 132 665,280
8 40,320 429 17,297,280
9 362,880 1,430 518,918,400
10 3,628,800 4,862 17,643,225,600
THANK YOU FOR LISTENING!
iggy_fernandez@hotmail.com
The Hitchhiker’s Guide to the
EXPLAIN PLAN
NoCOUG Journal Archive
QUESTIONS?
© 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED. 93
FREE TRIAL
• Try Database Performance Analyzer FREE for 14 days
• Improve root cause of slow performance
• Quickly identify root cause of issues that impact end-user response time
• See historical trends over days, months, and years
• Understand impact of VMware® performance
• Agentless architecture, installs in minutes
94
RE S O LV E P E RFO RM ANCE I S S UE S Q UI CKLY
© 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED.
www.solarwinds.com/dpa-download/
THANK YOU
© 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED.
The SOLARWINDS and SOLARWINDS & Design marks are the exclusive property of SolarWinds Worldwide, LLC, are registered with the U.S.
Patent and Trademark Office, and may be registered or pending registration in other countries. All other SolarWinds trademarks, service marks,
and logos may be common law marks, registered or pending registration in the United States or in other countries. All other trademarks
mentioned herein are used for identification purposes only and may be or are trademarks or registered trademarks of their respective companies.
95

More Related Content

What's hot (20)

PDF
Oracle RAC 12c and Policy-Managed Databases, a Technical Overview
Ludovico Caldara
 
PPTX
HBase Operations and Best Practices
Venu Anuganti
 
PPTX
Migrating to Oracle Database 12c: 300 DBs in 300 days.
Ludovico Caldara
 
PDF
Zero Downtime Schema Changes - Galera Cluster - Best Practices
Severalnines
 
PDF
Rapid Home Provisioning
Ludovico Caldara
 
PDF
PostgreSQL on Solaris
Theo Schlossnagle
 
PDF
Run Cloud Native MySQL NDB Cluster in Kubernetes
Bernd Ocklin
 
PPTX
BigData Developers MeetUp
Christian Johannsen
 
ODP
Do more with Galera Cluster in your OpenStack cloud
philip_stoev
 
PDF
Distributed Caching Essential Lessons (Ts 1402)
Yury Kaliaha
 
PDF
DataStax | Effective Testing in DSE (Lessons Learned) (Predrag Knezevic) | Ca...
DataStax
 
PDF
Introduction to Cassandra Architecture
nickmbailey
 
PPTX
Lessons Learned From Running 1800 Clusters (Brooke Jensen, Instaclustr) | Cas...
DataStax
 
PDF
Oracle Active Data Guard 12c: Far Sync Instance, Real-Time Cascade and Other ...
Ludovico Caldara
 
PDF
Oracle Client Failover - Under The Hood
Ludovico Caldara
 
PDF
Oracle Drivers configuration for High Availability, is it a developer's job?
Ludovico Caldara
 
PPT
Mysql high availability and scalability
yin gong
 
PDF
RACAttack 12c Advanced Lab: Server Pools and Policy-managed databases
Ludovico Caldara
 
PPTX
Cassandra internals
narsiman
 
PDF
Boost your Oracle RAC manageability with Policy-Managed Databases
Ludovico Caldara
 
Oracle RAC 12c and Policy-Managed Databases, a Technical Overview
Ludovico Caldara
 
HBase Operations and Best Practices
Venu Anuganti
 
Migrating to Oracle Database 12c: 300 DBs in 300 days.
Ludovico Caldara
 
Zero Downtime Schema Changes - Galera Cluster - Best Practices
Severalnines
 
Rapid Home Provisioning
Ludovico Caldara
 
PostgreSQL on Solaris
Theo Schlossnagle
 
Run Cloud Native MySQL NDB Cluster in Kubernetes
Bernd Ocklin
 
BigData Developers MeetUp
Christian Johannsen
 
Do more with Galera Cluster in your OpenStack cloud
philip_stoev
 
Distributed Caching Essential Lessons (Ts 1402)
Yury Kaliaha
 
DataStax | Effective Testing in DSE (Lessons Learned) (Predrag Knezevic) | Ca...
DataStax
 
Introduction to Cassandra Architecture
nickmbailey
 
Lessons Learned From Running 1800 Clusters (Brooke Jensen, Instaclustr) | Cas...
DataStax
 
Oracle Active Data Guard 12c: Far Sync Instance, Real-Time Cascade and Other ...
Ludovico Caldara
 
Oracle Client Failover - Under The Hood
Ludovico Caldara
 
Oracle Drivers configuration for High Availability, is it a developer's job?
Ludovico Caldara
 
Mysql high availability and scalability
yin gong
 
RACAttack 12c Advanced Lab: Server Pools and Policy-managed databases
Ludovico Caldara
 
Cassandra internals
narsiman
 
Boost your Oracle RAC manageability with Policy-Managed Databases
Ludovico Caldara
 

Similar to 12 things Oracle DBAs must know about SQL (20)

DOC
SQLQueries
karunakar81987
 
PPT
SQL-examples.ppt
SULAIMONASIF
 
PPT
SQL-examples.ppt
meenu851211
 
PPT
introduction of sql like you will be able to know lots of things from here ab...
AshishYadav143787
 
PPT
SQL-examples.ppt
ssuser5c8249
 
PPTX
SQL-examples.pptx sql structured d query
syedalishahid6
 
PPT
SQL knowledge at its best ppt-pt-new.ppt
HoneyVerma50
 
PPT
Chapter08
sasa_eldoby
 
PPT
The SQL data-definition language (DDL) allows the specification of informatio...
masiciv688
 
PPT
SQL query ppt with detailed information and examples.ppt
HoneyVerma50
 
PPT
Module 3 Part I - Bk1 Chapter 07.ppt
KusumaS36
 
DOC
Sql Document in Testing
Saurabh Bhardwaj
 
PPTX
SQL.pptx
SAIFKHAN41507
 
PDF
Modern Database Management 11th Edition Hoffer Solutions Manual
bardhdinci22
 
PPTX
SQL techniques for faster applications
Connor McDonald
 
PPT
Introduction to-sql
BG Java EE Course
 
PPT
SQL querys in detail || Sql query slides
gourav kottawar
 
PPTX
SQL(NEW).pptx
PoojaChawan2
 
PPTX
Data Retrival
Er. Nawaraj Bhandari
 
PPTX
Dbms sql-final
NV Chandra Sekhar Nittala
 
SQLQueries
karunakar81987
 
SQL-examples.ppt
SULAIMONASIF
 
SQL-examples.ppt
meenu851211
 
introduction of sql like you will be able to know lots of things from here ab...
AshishYadav143787
 
SQL-examples.ppt
ssuser5c8249
 
SQL-examples.pptx sql structured d query
syedalishahid6
 
SQL knowledge at its best ppt-pt-new.ppt
HoneyVerma50
 
Chapter08
sasa_eldoby
 
The SQL data-definition language (DDL) allows the specification of informatio...
masiciv688
 
SQL query ppt with detailed information and examples.ppt
HoneyVerma50
 
Module 3 Part I - Bk1 Chapter 07.ppt
KusumaS36
 
Sql Document in Testing
Saurabh Bhardwaj
 
SQL.pptx
SAIFKHAN41507
 
Modern Database Management 11th Edition Hoffer Solutions Manual
bardhdinci22
 
SQL techniques for faster applications
Connor McDonald
 
Introduction to-sql
BG Java EE Course
 
SQL querys in detail || Sql query slides
gourav kottawar
 
SQL(NEW).pptx
PoojaChawan2
 
Data Retrival
Er. Nawaraj Bhandari
 
Ad

More from SolarWinds (20)

PPTX
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds
 
PPTX
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds
 
PPTX
Government Webinar: Alerting and Reporting in the Age of Observability
SolarWinds
 
PPTX
Government and Education Webinar: Full Stack Observability
SolarWinds
 
PPTX
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
SolarWinds
 
PPTX
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
SolarWinds
 
PPTX
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
SolarWinds
 
PPTX
Government and Education Webinar: Simplify Your Database Performance Manageme...
SolarWinds
 
PPTX
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
SolarWinds
 
PPTX
Government and Education Webinar: Leverage Automation to Improve IT Operations
SolarWinds
 
PPTX
Government and Education Webinar: Improving Application Performance
SolarWinds
 
PPTX
Government and Education: IT Tools to Support Your Hybrid Workforce
SolarWinds
 
PPTX
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
SolarWinds
 
PPTX
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds
 
PPTX
Government and Education Webinar: Zero-Trust Panel Discussion
SolarWinds
 
PPTX
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
SolarWinds
 
PPTX
Government and Education Webinar: SQL Server—Advanced Performance Tuning
SolarWinds
 
PPTX
Government and Education Webinar: Recovering IP Addresses on Your Network
SolarWinds
 
PPTX
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
SolarWinds
 
PPTX
Government and Education Webinar: Conquering Remote Work IT Challenges
SolarWinds
 
SolarWinds Government and Education Webinar: Greatest SolarWinds Features I N...
SolarWinds
 
SolarWinds Government and Education Webinar: Gaps Exist in Your Monitoring In...
SolarWinds
 
Government Webinar: Alerting and Reporting in the Age of Observability
SolarWinds
 
Government and Education Webinar: Full Stack Observability
SolarWinds
 
Government and Education Webinar: Public Sector Cybersecurity Survey - What I...
SolarWinds
 
Becoming Secure By Design: Questions You Should Ask Your Software Vendors
SolarWinds
 
Government and Education Webinar: Real-Time Mission, CIO, and Command Dashboards
SolarWinds
 
Government and Education Webinar: Simplify Your Database Performance Manageme...
SolarWinds
 
Government and Education Webinar: SolarWinds Orion Platform: Audit and Stream...
SolarWinds
 
Government and Education Webinar: Leverage Automation to Improve IT Operations
SolarWinds
 
Government and Education Webinar: Improving Application Performance
SolarWinds
 
Government and Education: IT Tools to Support Your Hybrid Workforce
SolarWinds
 
Government and Education Webinar: There's More Than One Way to Monitor SQL Da...
SolarWinds
 
SolarWinds Government and Education Webinar: Virtual Technology Briefing 08.0...
SolarWinds
 
Government and Education Webinar: Zero-Trust Panel Discussion
SolarWinds
 
Government and Education: Leveraging The SolarWinds Orion Assistance Program ...
SolarWinds
 
Government and Education Webinar: SQL Server—Advanced Performance Tuning
SolarWinds
 
Government and Education Webinar: Recovering IP Addresses on Your Network
SolarWinds
 
Government and Education Webinar: Optimize Performance With Advanced Host Mon...
SolarWinds
 
Government and Education Webinar: Conquering Remote Work IT Challenges
SolarWinds
 
Ad

Recently uploaded (20)

PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PDF
July Patch Tuesday
Ivanti
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
Fl Studio 24.2.2 Build 4597 Crack for Windows Free Download 2025
faizk77g
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
July Patch Tuesday
Ivanti
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
Biography of Daniel Podor.pdf
Daniel Podor
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 

12 things Oracle DBAs must know about SQL

  • 1. 12 THINGS EVERY ORACLE DBA AND DEVELOPER SHOULD KNOW ABOUT SQL IGGY FERNANDEZ EDITOR, NoCOUG JOURNAL
  • 2. INTRODUCTION » Editor of the NoCOUG Journal (Archive) » Presentation based on The Twelve Days of SQL blog series » Also read The Twelve Days of NoSQL blog series » New blog series: The Hitchhiker’s Guide to the EXPLAIN PLAN (ToadWorld)
  • 4. TOP TIPS » Buy every book by Steven Faroult  The Art of SQL  Refactoring SQL Applications  SQL Success (New) » Follow my ToadWorld blog  Hitchhiker’s Guide to the EXPLAIN PLAN » Install the OTN Developer Day virtual machine on your desktop
  • 5. TOP TIPS » Buy every book by Steven Faroult  The Art of SQL  Refactoring SQL Applications  SQL Success (New) » Follow my ToadWorld blog  Hitchhiker’s Guide to the EXPLAIN PLAN » Install the OTN Developer Day virtual machine on your desktop
  • 6. “Those who are in love with practice without knowledge are like the sailor who gets into a ship without rudder or compass and who never can be certain where he is going. Practice must always be founded on sound theory.” —The Discourse on Painting by Leonardo da Vinci
  • 7. #1 SQL IS A NON-PROCEDURAL LANGUAGE
  • 8. Charles Bachman 1973 Turing Award Winner Dr. Edgar Codd 1981 Turing Award Winner PATRON SAINTS OF DATABASES
  • 12. THE PROGRAMMER AS NAVIGATOR 1. Sequential access 2. ROWID access 3. Primary key access 4. Secondary key access 5. Starting from the owner record, get all the records in a chain 6. Starting from any record, get the prior and next in a chain 7. Starting from any record, get the owner record
  • 13. “Each of these access methods is interesting in itself, and all are very useful. However, it is the synergistic usage of the entire collection which gives the programmer great and expanded powers to come and go within a large database while accessing only those records of interest in responding to inquiries and updating the database in anticipation of future inquiries.” —Charles Bachman ACM Turing Award Lecture, 1973
  • 14. RELATIONAL MODEL “In the choice of logical data structures that a system is to support, there is one consideration of absolutely paramount importance – and that is the convenience of the majority of users. … To make formatted data bases readily accessible to users (especially casual users) who have little or no training in programming we must provide the simplest possible data structures and almost natural language. … What could be a simpler, more universally needed, and more universally understood data structure than a table?” —Dr. Edgar Codd Normalized Data Base Structure: A Brief Tutorial (1971)
  • 15. THE INTENDED AUDIENCE FOR SQL “There is a large class of users who, while they are not computer specialists, would be willing to learn to interact with a computer in a reasonably high-level, non-procedural query language. Examples of such users are accountants, engineers, architects, and urban planners. It is for this class of users that SEQUEL is intended.” —Donald Chamberlin and Raymond Boyce Sequel: A Structured English Query Language (1974)
  • 16. WHAT CAN YOU EXPECT FROM A NON- PROCEDURAL QUERY LANGUAGE? » Oracle is not using the indexes we created. » The query plan changes without apparent reason. » The query ran fast yesterday but is running slowly today. » The query ran fast a few minutes ago but is running slowly now. » The query runs fast in the QA database but runs slowly in the production database. » The query runs slower after a database upgrade.
  • 17. QUERY PLAN STABILITY » Hints » Stored Outlines » SQL Profiles (the SQLT version) » SQL Plan Management » Don’t refresh statistics? » Don’t use bind variable peeking?
  • 18. #2 SQL IS BASED ON RELATIONAL CALCULUS AND RELATIONAL ALGEBRA
  • 19. DEFINITION OF A RELATIONAL DATABASE “A relational database is a database in which: The data is perceived by the user as tables (and nothing but tables) and the operators available to the user for (for example) retrieval are operators that derive “new” tables from “old” ones.” —Chris Date An Introduction to Database Systems
  • 20. RELATIONAL OPERATORS (FUNDAMENTAL AND SUFFICIENT) » Selection » Projection » Union » Difference (Minus) » Join (Cross Join)
  • 21. ADDITIONAL RELATIONAL OPERATIONS (DERIVABLE FROM THE FUNDAMENTAL SET) » Inner Join » Outer Join » Intersection » Semi Join » Anti Join » Division
  • 22. THE EMPLOYEES TABLE Name Null? Type ----------------------------------------- -------- ------------------ EMPLOYEE_ID NOT NULL NUMBER(6) FIRST_NAME VARCHAR2(20) LAST_NAME NOT NULL VARCHAR2(25) EMAIL NOT NULL VARCHAR2(25) PHONE_NUMBER VARCHAR2(20) HIRE_DATE NOT NULL DATE JOB_ID NOT NULL VARCHAR2(10) SALARY NUMBER(8,2) COMMISSION_PCT NUMBER(2,2) MANAGER_ID NUMBER(6) DEPARTMENT_ID NUMBER(4
  • 23. THE JOB HISTORY TABLE Name Null? Type ----------------------------------------- -------- ----- EMPLOYEE_ID NOT NULL NUMBER(6) START_DATE NOT NULL DATE END_DATE NOT NULL DATE JOB_ID NOT NULL VARCHAR2(10) DEPARTMENT_ID NUMBER(4)
  • 24. THE JOBS TABLE Name Null? Type ----------------------------------------- -------- ------------------ JOB_ID NOT NULL VARCHAR2(10) JOB_TITLE NOT NULL VARCHAR2(35) MIN_SALARY NUMBER(6) MAX_SALARY NUMBER(6)
  • 25. EMPLOYEES WHO HAVE HELD ALL ACCOUNTING JOBS (RELATIONAL CALCULUS) SELECT employee_id FROM employees e WHERE NOT EXISTS ( SELECT job_id FROM jobs j WHERE job_id LIKE 'AC%‘ AND NOT EXISTS ( SELECT * FROM ( SELECT employee_id, job_id FROM job_history UNION SELECT employee_id, job_id FROM employees ) WHERE employee_id = e.employee_id AND job_id = j.job_id ) )
  • 26. EMPLOYEES WHO HAVE HELD ALL ACCOUNTING JOBS (RELATIONAL ALGEBRA) SELECT employee_id FROM employees MINUS SELECT employee_id FROM (SELECT employees.employee_id, jobs.job_id FROM employees CROSS JOIN jobs WHERE jobs.job_id LIKE 'AC%' MINUS ( SELECT employee_id, job_id FROM job_history UNION SELECT employee_id, job_id FROM employees ) )
  • 27. EMPLOYEES WHO HAVE HELD ALL ACCOUNTING JOBS (SUBQUERY FACTORING) WITH -- Step 1: Projection all_employees_1 AS ( SELECT employee_id FROM employees ), -- Step 2: Projection all_employees_2 AS ( SELECT employee_id FROM employees ), -- Step 3: Projection all_jobs AS ( SELECT job_id FROM jobs ),
  • 28. -- Step 4: Selection selected_jobs AS ( SELECT * FROM all_jobs WHERE job_id LIKE 'AC%' ), -- Step 5: Join selected_pairings AS ( SELECT * FROM all_employees_2 CROSS JOIN selected_jobs ), -- Step 6: Projection current_job_titles AS ( SELECT employee_id, job_id FROM employees ),
  • 29. -- Step 7: Projection previous_job_titles AS ( SELECT employee_id, job_id FROM job_history ), -- Step 8: Union complete_job_history AS ( SELECT * FROM current_job_titles UNION SELECT * FROM previous_job_titles ), -- Step 9: Difference nonexistent_pairings AS ( SELECT * FROM selected_pairings MINUS SELECT * FROM complete_job_history ),
  • 30. -- Step 10: Projection ineligible_employees AS ( SELECT employee_id FROM nonexistent_pairings ) -- Step 11: Difference SELECT * FROM all_employees_1 MINUS SELECT * FROM ineligible_employees
  • 31. #3 THERE ISN’T ALWAYS A SINGLE OPTIMAL QUERY PLAN FOR A SQL QUERY
  • 32. IT DEPENDS ON WHAT THE MEANING OF THE WORD “IS” IS select * from employees where first_name like 'Lex' and last_name like 'De Haan' select * from employees where first_name like :b1 and last_name like :b2
  • 33. #4 THE TWELVE DAYS OF SQL: THE WAY YOU WRITE YOUR QUERY MATTERS
  • 34. THE PERSONNEL TABLE CREATE TABLE personnel ( empid CHAR(9), lname CHAR(15), fname CHAR(12), address CHAR(20), city CHAR(20), state CHAR(2), ZIP CHAR(5) );
  • 35. THE PAYROLL TABLE CREATE TABLE payroll ( empid CHAR(9), bonus INTEGER, salary INTEGER );
  • 36. SOLUTION #1 RELATIONAL ALGEBRA METHOD SELECT DISTINCT per.empid, per.lname FROM personnel per JOIN payroll pay ON (per.empid = pay.empid) WHERE pay.salary = 199170; Plan hash value: 3901981856 ------------------------------------------------------- | Id | Operation | Name | ------------------------------------------------------- | 0 | SELECT STATEMENT | | | 1 | HASH UNIQUE | | | 2 | NESTED LOOPS | | | 3 | NESTED LOOPS | | | 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 5 | INDEX RANGE SCAN | PAYROLL_I1 | |* 6 | INDEX UNIQUE SCAN | PERSONNEL_U1 | | 7 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | -------------------------------------------------------
  • 37. SOLUTION #2 UNCORRELATED SUBQUERY SELECT per.empid, per.lname FROM personnel per WHERE per.empid IN (SELECT pay.empid FROM payroll pay WHERE pay.salary = 199170); Plan hash value: 3342999746 ------------------------------------------------------ | Id | Operation | Name | ------------------------------------------------------ | 0 | SELECT STATEMENT | | | 1 | NESTED LOOPS | | | 2 | NESTED LOOPS | | | 3 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 4 | INDEX RANGE SCAN | PAYROLL_I1 | |* 5 | INDEX UNIQUE SCAN | PERSONNEL_U1 | | 6 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | ------------------------------------------------------
  • 38. SOLUTION #3 CORRELATED SUBQUERY SELECT per.empid, per.lname FROM personnel per WHERE EXISTS (SELECT * FROM payroll pay WHERE per.empid = pay.empid AND pay.salary = 199170); Plan hash value: 864898783 ------------------------------------------------------- | Id | Operation | Name | ------------------------------------------------------- | 0 | SELECT STATEMENT | | | 1 | NESTED LOOPS | | | 2 | NESTED LOOPS | | | 3 | SORT UNIQUE | | | 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 5 | INDEX RANGE SCAN | PAYROLL_I1 | |* 6 | INDEX UNIQUE SCAN | PERSONNEL_U1 | | 7 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | -------------------------------------------------------
  • 39. SOLUTION #4 SCALAR SUBQUERY IN THE WHERE CLAUSE SELECT per.empid, per.lname FROM personnel per WHERE (SELECT pay.salary FROM payroll pay WHERE pay.empid = per.empid) = 199170; Plan hash value: 3607962630 --------------------------------------------------- | Id | Operation | Name | --------------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | FILTER | | | 2 | TABLE ACCESS FULL | PERSONNEL | | 3 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 4 | INDEX UNIQUE SCAN | PAYROLL_U1 | --------------------------------------------------- 1 - filter(=199170) 4 - access("PAY"."EMPID"=:B1)
  • 40. SOLUTION #5 SCALAR SUBQUERY IN THE SELECT CLAUSE SELECT DISTINCT pay.empid, (SELECT lname FROM personnel per WHERE per.empid = pay.empid) FROM payroll pay WHERE pay.salary = 199170; Plan hash value: 750911849 ----------------------------------------------------- | Id | Operation | Name | ----------------------------------------------------- | 0 | SELECT STATEMENT | | | 1 | TABLE ACCESS BY INDEX ROWID | PERSONNEL | |* 2 | INDEX UNIQUE SCAN | PERSONNEL_U1 | | 3 | HASH UNIQUE | | | 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 5 | INDEX RANGE SCAN | PAYROLL_I1 | ----------------------------------------------------- 2 - access("PER"."EMPID"=:B1) 5 - access("PAY"."SALARY"=199170)
  • 41. SOLUTION #6 AGGREGATE FUNCTION TO CHECK EXISTENCE SELECT per.empid, per.lname FROM personnel per WHERE (SELECT count(*) FROM payroll pay WHERE pay.empid = per.empid AND pay.salary = 199170) > 0; Plan hash value: 3561519015 ---------------------------------------------------- | Id | Operation | Name | ---------------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | FILTER | | | 2 | TABLE ACCESS FULL | PERSONNEL | | 3 | SORT AGGREGATE | | |* 4 | TABLE ACCESS BY INDEX ROWID| PAYROLL | |* 5 | INDEX UNIQUE SCAN | PAYROLL_U1 | ---------------------------------------------------- 1 - filter(>0) 4 - filter("PAY"."SALARY"=199170) 5 - access("PAY"."EMPID"=:B1)
  • 42. SOLUTION #7 CORRELATED SUBQUERY (DOUBLE NEGATIVE) SELECT per.empid, per.lname FROM personnel per WHERE NOT EXISTS (SELECT * FROM payroll pay WHERE pay.empid = per.empid AND pay.salary != 199170); Plan hash value: 103534934 ------------------------------------------ | Id | Operation | Name | ------------------------------------------ | 0 | SELECT STATEMENT | | |* 1 | HASH JOIN RIGHT ANTI| | |* 2 | TABLE ACCESS FULL | PAYROLL | | 3 | TABLE ACCESS FULL | PERSONNEL | ------------------------------------------ 1 - access("PAY"."EMPID"="PER"."EMPID") 2 - filter("PAY"."SALARY"<>199170)
  • 43. SOLUTION #8 UNCORRELATED SUBQUERY (DOUBLE NEGATIVE) SELECT per.empid, per.lname FROM personnel per WHERE per.empid NOT IN (SELECT pay.empid FROM payroll pay WHERE pay.salary != 199170); Plan hash value: 2202369223 --------------------------------------------- | Id | Operation | Name | --------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | HASH JOIN RIGHT ANTI NA| | |* 2 | TABLE ACCESS FULL | PAYROLL | | 3 | TABLE ACCESS FULL | PERSONNEL | --------------------------------------------- 1 - access("PER"."EMPID"="PAY"."EMPID") 2 - filter("PAY"."SALARY"<>199170)
  • 44. COMPARISON (11G RELEASE 2) METHOD Plan Hash Elapsed Buffer Gets (us) --------------------------------------- ---------- ------- ----------- Uncorrelated subquery 3342999746 129 17 Correlated subquery 864898783 405 16 Relational algebra method 3901981856 426 16 Scalar subquery in the SELECT clause 750911849 701 16 Uncorrelated subquery (double negative) 2202369223 7702 241 Correlated subquery (double negative) 103534934 14499 241 Scalar subquery in the WHERE clause 3607962630 195999 10549 Aggregate function to check existence 3561519015 310690 10554
  • 45. #8 STATISTICS ARE A DOUBLE-EDGED SWORD
  • 46. “Oh, and by the way, could you please stop gathering statistics constantly? I don’t know much about databases, but I do think I know the following: small tables tend to stay small, large tables tend to stay large, unique indexes have a tendency to stay unique, and non-unique indexes often stay non-unique.” —Dave Ensor (as remembered by Mogens Norgaard) Statistics: How and When? November 2010 issue of the NoCOUG Journal
  • 47. “Monitor the changes in execution plans and/or performance for the individual SQL statements … and perhaps as a consequence re-gather stats. That way, you’d leave stuff alone that works very well, thank you, and you’d put your efforts into exactly the things that have become worse.” —Mogens Norgaard Statistics: How and When? November 2010 issue of the NoCOUG Journal
  • 48. “There are some statistics about your data that can be left unchanged for a long time, possibly forever; there are some statistics that need to be changed periodically; and there are some statistics that need to be changed constantly. … The biggest problem is that you need to understand the data.” —Jonathan Lewis Statistics: How and When? November 2010 issue of the NoCOUG Journal
  • 49. “It astonishes me how many shops prohibit any un-approved production changes and yet re-analyze schema stats weekly. Evidently, they do not understand that the [possible consequence] of schema re- analysis is to change their production SQL execution plans, and they act surprised when performance changes!” —Don Burleson Statistics: How and When? November 2010 issue of the NoCOUG Journal
  • 50. #9 PHYSICAL DATABASE DESIGN MATTERS
  • 51. “If a schema has no IOTs or clusters, that is a good indication that no thought has been given to the matter of optimizing data access.” —Tom Kyte (quoting Steve Adams) Effective Oracle by Design (page 379)
  • 52. THE NOSQL COMPLAINT “Using tables to store objects is like driving your car home and then disassembling it to put it in the garage. It can be assembled again in the morning, but one eventually asks whether this is the most efficient way to park a car.” —incorrectly attributed to Esther Dyson Editor of Release 1.0 “You can keep a car in a file cabinet because you can file the engine components in files in one drawer, and the axles and things in another, and keep a list of how everything fits together. You can, but you wouldn’t want to.” —Esther Dyson September 1989 issue of Release 1.0
  • 53. DEMONSTRATION Refer to the blog post The Twelve Days of NoSQL: Day Six: The False Premise of NoSQL
  • 54. #10 SOMETIMES THE OPTIMIZER NEEDS A HINT
  • 55. WHO SAID THAT? “No optimizer is perfect and directives such as Oracle’s hints provide the simplest workaround [in] situations in which the optimizer has chosen a suboptimal plan. Hints are useful tools not just to remedy an occasional suboptimal plan, but also for users who want to experiment with access paths, or simply have full control over the execution of a query.” 1. Homer Simpson 2. Dr. Edgar Codd (the inventor of relational database theory) 3. Oracle white paper by Maria Colgan and Fred Lumpkin
  • 56. SUGGESTIONS FROM DAN TOW » Oracle’s Cost-based Optimizer (CBO) does a perfectly good job on most SQL, requiring no manual tuning for most SQL. » The CBO must parse quickly, use the data and indexes that it has, make assumptions about what it does not know, and deliver exactly the result that the SQL calls for. » On a small fraction of the SQL, the constraints on the CBO result in a performance problem. » Find SQL worth tuning, ignoring the great majority that already performs just fine. » Find the true optimum execution plan (or at least one you verify is fast enough), manually, without the CBO’s constraints or assumptions. » Compare your manually chosen execution plan, and its resulting performance, with the CBO’s plan and consider why the CBO did not select your plan, if it did not. » Choose a solution that solves the problem.
  • 57. #11 AWR AND STATSPACK ARE A GOLDMINE OF HISTORICAL PERFORMANCE DATA
  • 60. #12 READERS DO NOT BLOCK WRITERS; WRITERS DO NOT BLOCK READERS
  • 61. SERIALIZABILITY “To describe consistent transaction behavior when transactions run at the same time, database researchers have defined a transaction isolation model called serializability. The serializable mode of transaction behavior tries to ensure that transactions run in such a way that they appear to be executed one at a time, or serially, rather than concurrently.” —Oracle documentation up to 11g Release 1
  • 62. DEMONSTRATION create table parent ( parent_name varchar(8) ); create table child ( child_name varchar(8), parent_name varchar(8) ); insert into parent values('Warbucks'); commit;
  • 63. 18:25:07 TRANSACTION A> alter session set isolation_level=serializable; Session altered. 18:25:07 TRANSACTION A> select * from parent where parent_name='Warbucks'; 1 row selected. 18:25:16 TRANSACTION B> alter session set isolation_level=serializable; Session altered. 18:25:16 TRANSACTION B> select * from child where parent_name='Warbucks'; no rows selected
  • 64. 18:25:19 TRANSACTION A> insert into child values ('Annie','Warbucks'); 1 row created. 18:25:21 TRANSACTION B> delete from parent where parent_name='Warbucks'; 1 row deleted. 18:25:23 TRANSACTION A> commit; Commit complete. 18:25:25 TRANSACTION B> commit; Commit complete.
  • 65. Based on the blog post Day 12: The Twelve Days of SQL: Readers do not block writers; writers do not block readers
  • 66. #7 EXPLAIN PLAN LIES (SO DOES AUTOTRACE)
  • 67. WHAT ABOUT … » Bind variables » Adaptive cursor sharing » Cardinality feedback » Adaptive query optimization
  • 68. #5 THE QUERY COST IS ONLY AN ESTIMATE
  • 69. #6 THE EXECUTION PLAN IS A TREE
  • 70. HOW TO READ EXPLAIN PLAN OUTPUT (NOT!) “The execution order in EXPLAIN PLAN output begins with the line that is the furthest indented to the right. The next step is the parent of that line. If two lines are indented equally, then the top line is normally executed first.” —Oracle documentation
  • 71. THE REAL SCOOP An Oracle EXPLAIN PLAN is a “tree” structure corresponding to a relational algebra expression. It is printed in “pre-order” sequence (visit the root of the tree, then traverse each subtree—if any—in pre-order sequence) but should be read in “post-order” sequence (first traverse each subtree—if any—in post-order sequence, then only visit the root of the tree).
  • 75. ---------------------------------------------------------------- | Id | Operation | Name | ---------------------------------------------------------------- | 0 | SELECT STATEMENT | | | 1 | MINUS | | | 2 | SORT UNIQUE NOSORT | | | 3 | INDEX FULL SCAN | EMP_EMP_ID_PK | | 4 | SORT UNIQUE | | | 5 | VIEW | | | 6 | MINUS | | | 7 | SORT UNIQUE | | | 8 | MERGE JOIN CARTESIAN | | | 9 | INDEX RANGE SCAN | JOB_ID_PK | | 10 | BUFFER SORT | | | 11 | INDEX FAST FULL SCAN | EMP_EMP_ID_PK | | 12 | SORT UNIQUE | | | 13 | UNION-ALL | | | 14 | VIEW | index$_join$_006 | | 15 | HASH JOIN | | | 16 | INDEX FAST FULL SCAN| JHIST_EMP_ID_ST_DATE_PK | | 17 | INDEX FAST FULL SCAN| JHIST_JOB_IX | | 18 | VIEW | index$_join$_007 | | 19 | HASH JOIN | | | 20 | INDEX FAST FULL SCAN| EMP_EMP_ID_PK | | 21 | INDEX FAST FULL SCAN| EMP_JOB_IX | ----------------------------------------------------------------
  • 78. SELECT e.first_name, e.last_name, e.salary, j.job_title, d.department_name, l.city, l.state_province, c.country_name, r.region_name FROM employees e, jobs j, departments d, locations l, countries c, regions r WHERE e.department_id = 90 AND j.job_id = e.job_id AND d.department_id = e.department_id AND l.location_id = d.location_id AND c.country_id = l.country_id AND r.region_id = c.region_id;
  • 79. HINTS FOR DEEP LEFT TREE LEADING (e j d l c r) USE_NL(j) USE_NL(d) USE_NL(l) USE_NL(c) USE_NL(r)
  • 80. DEEP LEFT TREE --------------------------------------------------------------- | Id | Operation | Name | --------------------------------------------------------------- | 0 | SELECT STATEMENT | | | 1 | NESTED LOOPS | | | 2 | NESTED LOOPS | | | 3 | NESTED LOOPS | | | 4 | NESTED LOOPS | | | 5 | NESTED LOOPS | | | 6 | NESTED LOOPS | | | 7 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES | |* 8 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX | | 9 | TABLE ACCESS BY INDEX ROWID| JOBS | |* 10 | INDEX UNIQUE SCAN | JOB_ID_PK | | 11 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS | |* 12 | INDEX UNIQUE SCAN | DEPT_ID_PK | | 13 | TABLE ACCESS BY INDEX ROWID | LOCATIONS | |* 14 | INDEX UNIQUE SCAN | LOC_ID_PK | |* 15 | INDEX UNIQUE SCAN | COUNTRY_C_ID_PK | |* 16 | INDEX UNIQUE SCAN | REG_ID_PK | | 17 | TABLE ACCESS BY INDEX ROWID | REGIONS | ---------------------------------------------------------------
  • 82. HINTS FOR DEEP RIGHT TREE LEADING (e j d l c r) USE_HASH(j) SWAP_JOIN_INPUTS(j) USE_HASH(d) SWAP_JOIN_INPUTS(d) USE_HASH(l) SWAP_JOIN_INPUTS(l) USE_HASH(c) SWAP_JOIN_INPUTS(c) USE_HASH(r) SWAP_JOIN_INPUTS(r)
  • 83. DEEP RIGHT TREE -------------------------------------------------------------- | Id | Operation | Name | -------------------------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | HASH JOIN | | | 2 | TABLE ACCESS FULL | REGIONS | |* 3 | HASH JOIN | | | 4 | INDEX FAST FULL SCAN | COUNTRY_C_ID_PK | |* 5 | HASH JOIN | | | 6 | TABLE ACCESS FULL | LOCATIONS | |* 7 | HASH JOIN | | | 8 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS | |* 9 | INDEX UNIQUE SCAN | DEPT_ID_PK | |* 10 | HASH JOIN | | | 11 | TABLE ACCESS FULL | JOBS | | 12 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES | |* 13 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX | --------------------------------------------------------------
  • 85. HINTS FOR ZIG-ZAG TREE LEADING (e j d l c r) USE_HASH(j) SWAP_JOIN_INPUTS(j) USE_HASH(d) NO_SWAP_JOIN_INPUTS(d) USE_HASH(l) SWAP_JOIN_INPUTS(l) USE_HASH(c) NO_SWAP_JOIN_INPUTS(c) USE_HASH(r) SWAP_JOIN_INPUTS(r)
  • 86. EXPLAIN PLAN FOR ZIG-ZAG TREE -------------------------------------------------------------- | Id | Operation | Name | -------------------------------------------------------------- | 0 | SELECT STATEMENT | | |* 1 | HASH JOIN | | | 2 | TABLE ACCESS FULL | REGIONS | |* 3 | HASH JOIN | | |* 4 | HASH JOIN | | | 5 | TABLE ACCESS FULL | LOCATIONS | |* 6 | HASH JOIN | | |* 7 | HASH JOIN | | | 8 | TABLE ACCESS FULL | JOBS | | 9 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES | |* 10 | INDEX RANGE SCAN | EMP_DEPARTMENT_IX | | 11 | TABLE ACCESS BY INDEX ROWID | DEPARTMENTS | |* 12 | INDEX UNIQUE SCAN | DEPT_ID_PK | | 13 | INDEX FAST FULL SCAN | COUNTRY_C_ID_PK | --------------------------------------------------------------
  • 88. BUSHY TREE (INLINE VIEW)SELECT /*+ LEADING(e j d) USE_NL(j) USE_NL(d) */ e.first_name, e.last_name, e.salary, j.job_title, d.department_name, d.city, d.state_province, d.country_name, d.region_name FROM employees e, jobs j, ( SELECT /*+ NO_MERGE */ d.department_id, d.department_name, l.city, l.state_province, c.country_name, r.region_name FROM departments d, locations l, countries c, regions r WHERE l.location_id = d.location_id AND c.country_id = l.country_id AND r.region_id = c.region_id ) d WHERE e.department_id = 90 AND j.job_id = e.job_id AND d.department_id = e.department_id;
  • 90. BUSHY TREES » (A B) C) D » (A (B C)) D » (A B) (C D) » A ((B C) D) » A (B (C D))
  • 91. TOTAL NUMBER OF TREES N FACTORIAL(N) CATALAN(N-1) Total trees 2 2 1 2 3 6 2 12 4 24 5 120 5 120 14 1,680 6 720 42 30,240 7 5,040 132 665,280 8 40,320 429 17,297,280 9 362,880 1,430 518,918,400 10 3,628,800 4,862 17,643,225,600
  • 92. THANK YOU FOR LISTENING! [email protected] The Hitchhiker’s Guide to the EXPLAIN PLAN NoCOUG Journal Archive
  • 93. QUESTIONS? © 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED. 93
  • 94. FREE TRIAL • Try Database Performance Analyzer FREE for 14 days • Improve root cause of slow performance • Quickly identify root cause of issues that impact end-user response time • See historical trends over days, months, and years • Understand impact of VMware® performance • Agentless architecture, installs in minutes 94 RE S O LV E P E RFO RM ANCE I S S UE S Q UI CKLY © 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED. www.solarwinds.com/dpa-download/
  • 95. THANK YOU © 2015 SOLARWINDS WORLDWIDE, LLC. ALL RIGHTS RESERVED. The SOLARWINDS and SOLARWINDS & Design marks are the exclusive property of SolarWinds Worldwide, LLC, are registered with the U.S. Patent and Trademark Office, and may be registered or pending registration in other countries. All other SolarWinds trademarks, service marks, and logos may be common law marks, registered or pending registration in the United States or in other countries. All other trademarks mentioned herein are used for identification purposes only and may be or are trademarks or registered trademarks of their respective companies. 95