Contents Index Deleting all rows from a table The role of the optimizer

ASA SQL User's Guide

Query Optimization and Execution


About this chapter 

Once each query is parsed, the optimizer analyzes it and decides on an access plan that will compute the result using as few resources as possible. This chapter describes the steps the optimizer goes through to optimize a query. It documents the assumptions that underlie the design of the optimizer, and discusses selectivity estimation, cost estimation, and the other steps of optimization.

Although update, insert, and delete statements must also be optimized, the focus of this chapter is on select queries. The optimization of these other commands follows similar principles.


The role of the optimizer
How the optimizer works
Query execution algorithms
Physical data organization and access
Indexes
Semantic query transformations
Subquery and function caching
Reading access plans

Contents Index Deleting all rows from a table The role of the optimizer