Loading Consent Dialog

SQL Tuning   «Prev  Next»

Lesson 10

Oracle SQL Tuning Conclusion

As you can see, there is quite a bit of complexity to SQL tuning.
This module has served as a high level introduction to the advanced SQL tuning topics that will follow in the later modules.
Topics in this module include:
  1. Oracle extensions to ANSI standard SQL
  2. Basic SQL tuning tools
  3. Using the EXPLAIN PLAN utility
  4. The SQL optimizer modes
  5. The rule-based SQL optimizer
  6. The cost-based SQL optimizer
  7. Tuning SQL with hints

New terms

Here are the terms from this module that may have been new to you:
  1. ANSI standard: The American National Standards Institute
  2. BIF: Extensions to standard Oracle SQL
  3. Cost-based optimizer: This is the latest SQL optimizer that uses object statistics to make intelligent table access decisions.
  4. Driving table: This is the table used by the SQL optimizer in the initial step of execution.
  5. Full-table scan: This is an execution plan that accesses a table without an index, reading each block of the table.
  6. Hash join: This is an execution plan that creates a hash table in SGA memory and uses this memory structure to join the tables.
  7. Heuristic: This is a rule or set of rules used to describe a process.
  8. Hint: This is an SQL compiler directive that tells Oracle to change an execution plan.
  9. Index: This is a data structure used to facilitate fast access to table rows in a specified sequence.
  10. Optimizer: This is an Oracle tool used to determine Oracle SQL execution plans.
  11. Ranking scheme: This is a method for determining the relative costs among candidate execution plans.
  12. Rule-based optimizer: This is the first Oracle SQL optimizer; it uses general rules to formulate execution plans.
Now that we know the basics, we will move on to look at advanced Oracle locking topics.
In the next module, we will explore the implementation of the ANSI standard.

SQL Tuning Concepts - Quiz

To complete this module, click the Quiz link below to test your knowledge so far of Oracle concepts and tuning.
SQL Tuning Concepts - Quiz