Dieser Text erscheint unter dem Minibild.

Jetzt wählen Sie für Ihre linke Seite Ihren Kurztext und ein Minibild aus.

Hier können Sie den Button, den Sie weiter unten auf dieser Seite auswählen, mit einem Link versehen.

Olga Carabanova

 

Hier können Sie den Button, den Sie weiter unten auf dieser Seite auswählen, mit einem Link versehen.

Hier können Sie den Button, den Sie weiter unten auf dieser Seite auswählen, mit einem Link versehen.

Hier können Sie den Button, den Sie weiter unten auf dieser Seite auswählen, mit einem Link versehen.

The execution plan produced by the optimizer can vary depending on the optimizer's goal. Optimizing for best throughput is more likely to result in a full table scan rather than an index scan, or a sort merge join rather than a nested loop join. Optimizing for best response time usually results in an index scan or a nested loop join. For example, suppose you have a join statement that can be executed with either a nested loops operation or a sort-merge operation. The sort-merge operation might return the entire query result faster, while the nested loops operation might return the first row faster. If your goal is to improve throughput, then the optimizer is more likely to choose a sort merge join. If your goal is to improve response time, then the optimizer is more likely to choose a nested loop join.

webmaster@carabanova.de

By default, the goal of the CBO is the best throughput. This means that it chooses the least amount of resources necessary to process all rows accessed by the statement.

Oracle can also optimize a statement with the goal of best response time.