Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The application enables the optimization of poorly-performing SQL code through the detection and modification of execution paths used in data retrieval. This  This process is performed through the following functions:

...

For example, if tuning is selecting from two tables (A and B), it will enable the joining of A to B, or B to A as well as the join form. Additionally, different joining methods such as nested loops or hash joins can be used and will be tested, as appropriate.

Tuning will select selects alternate paths , and enable enables you to change the original path to one of the alternates. Execution paths slower than the original are eliminated, which enables you to select the quickest of the returned selections and improve query times, overall.

...