Factors that Influence the Processing of an SQL Statement 

The following factors play a role during the processing of an SQL statement:

These factors especially influence the processing of an SQL statement if the SQL statement triggers a search of a large quantity of data. This generally happens with the following SQL statements:

SELECT ...
INSERT ... SELECT ...
UPDATE ... WHERE <search_condition>
DELETE ... WHERE <search_condition>