Pages

Sunday, November 7, 2010

Oracle SQL Hints

ORACLE SQL HINTS


Optimizer - SQL Hints

Sometimes, the optimizer needs some suggestions in order to make the best possible choice, even when armed with good statistics. These suggestions can be given to the optimizer in the form of hints in your SQL statements. While hints give direction to the optimizer, the optimizer is under no obligation to follow them every time.


Hints are specified by enclosing the hint in a comment in the query. Multiple hints can be contained in the comment. The comment must follow the SELECT, INSERT, UPDATE, or DELETE keyword and must contain a plus sign, '+' at the start. If the hint is not specified properly, then it will be ignored with no errors or warnings from the optimizer. A hint is specified as follows:

SELECT /*+ hint [text] [hint [text]] … */ ….

Or

/*+ hint */

/*+ hint(argument) */

/*+ hint(argument-1 argument-2) */


An example of a hint is as follows:

SELECT /*+ INDEX( e emp_pk) */

FROM emp e

WHERE empid IN (1001, 1002);

In the above example, the INDEX hint is used to suggest a specific index to the optimizer. Normally, a table name is denoted to define which table to use that index, but in this example the table was aliased in the FROM clause, therefore the hint must use the table's alias. If the table was aliased in the FROM clause, and the table name was used in the hint, the hint would be ignored.


All hints except /*+ rule */ cause the CBO to be used. Therefore, it is good practice to analyze the underlying tables if hints are used (or the query is fully hinted.

There should be no schema names in hints. Hints must use aliases if alias names are used for table names. So the following is wrong:

select /*+ index(scott.emp ix_emp) */ from scott.emp emp_alias

better:

select /*+ index(emp_alias ix_emp) */ ... from scott.emp emp_alias


Why to Use Hints

It is a perfect valid question to ask why hints should be used. Oracle comes with an optimizer that promises to optimize aquery's execution plan. When this optimizer is really doing a good job, no hints should be required at all.

Sometimes, however, the characteristics of the data in the database are changing rapidly, so that the optimizer (or more accuratly, its statistics) are out of date. In this case, a hint could help.

It must also be noted, that Oracle allows to lock the statistics when they look ideal which should make the hints meaningless again.

Hint categories

Hints can be categorized as follows:

  1. Hints for Optimization Approaches and Goals,
  2. Hints for Access Paths, Hints for Query Transformations,
  3. Hints for Join Orders,
  4. Hints for Join Operations,
  5. Hints for Parallel Execution,
  6. Miscellaneous Hints


1. Optimizer Mode Hints

The optimizer mode for the SQL statement can be specified as a hint. This overrides the instance and session settings for the optimizer mode. The optimizer hints are as follows:

ALL_ROWS

  • return all rows as fast as possible
  • One of the hints that 'invokes' the Cost based optimizer
  • ALL_ROWS is usually used for batch processing or data warehousing systems.


FIRST_ROWS(n)

  • return the first n rows as fast as possible, where n is 1, 10, 100, or 1000.
  • One of the hints that 'invokes' the Cost based optimizer
  • FIRST_ROWS is usually used for OLTP systems.


RULE

  • use to denote Rule Based Optimization. Not valid in Oracle 10g.
  • The RULE hint should be considered deprecated as it is dropped from Oracle9i2.

CHOOSE

  • use to denote Cost Based Optimization. Not valid in Oracle 10g.
  • One of the hints that 'invokes' the Cost based optimizer
  • This hint lets the server choose (between ALL_ROWS and FIRST_ROWS, based on statistics gathered

2. Access Path Hints

There are many ways to access data in a table. You can perform a full table scan or access the data using an index on the table. If using an index, you can use it in ascending mode or descending mode. The access path hints are:

CLUSTER

  • Performs a nested loop by the cluster index of one of the tables.

HASH

  • Hashes one table (full scan) and creates a hash index for that table. Then hashes other table and uses hash index to find corresponding records. Therefore not suitable for < or > join conditions.

ROWID

  • Retrieves the row by rowid

INDEX

  • Specifying that index index_name should be used on table tab_name: /*+ index (tab_name index_name) */
  • Specifying that the index should be used the the CBOthinks is most suitable. (Not always a good choice).
  • Starting with Oracle 10g, the index hint can be described: /*+ index(my_tab my_tab(col_1, col_2)) */. Using the index on my_tab that starts with the columns col_1 and col_2.

INDEX_COMBINE

AND_EQUAL
The AND_EQUAL hint explicitly chooses an execution plan that uses an access path that merges the scans on several single-column indexes

FULL suggests a full table scan

NO_INDEX suggests not to use an index

INDEX_ASC suggests to use an index in ascending mode

INDEX_DESC suggests to use an index in descending mode

INDEX_JOIN suggests to use an index join access method

INDEX_FFS suggests to use an index full fast scan

NO_INDEX_FFS suggests not to use an index full fast scan

INDEX_SS suggests to use an index skip scan. Available only in Oracle 10g.

INDEX_SS_ASC suggests to use an index skip scan in ascending mode. Available only in Oracle 10g.

INDEX_SS_DESC suggests to use an index skip scan in descending mode. Available only in Oracle 10g.

NO_INDEX_SS suggests not to use an index skip scan. Available only in Oracle 10g.

3. Join Hints

There are many methods used to join two tables together. The join hints are:

  • USE_NL Use a Nested Loop join method. Can specify the inner table.
  • NO_USE_NL Do not use a Nested Loop join method. Available only in Oracle 10g.
  • USE_NL_WITH_INDEX Use a Nested Loop join method with an index. Available only in Oracle 10g.
  • USE_MERGE Use a Sort Merge join method. Can specify the inner table.
  • NO_USE_MERGE Do not use a Sort Merge join method. Available only in Oracle 10g.
  • USE_HASH Use a Hash join method. Can specify the inner table
  • NO_USE_HASH Do not use the Hash join method. Available only in Oracle 10g.

4. Parallel Hints

There are a number of hints used in parallel processing of queries. Parallel queries use multiple processors on the database server to obtain results faster. The paralle hints are:

  • PARALLEL(n) Suggest to perform the operation in parallel. The degree of parallelization, n, can be specified.
  • NO_PARALLEL Suggest to not perform the query in parallel. This overrides the parallel specification for a table.
  • PARALLEL_INDEX(n) Suggest to parallelize the index range scan. The degree of parallelization, n, can be specified.
  • NO_PARALLEL_INDEX Suggest to not parallelize the index range scan.

5. Miscellaneous Hints

The miscellaneous hints are:

  • APPEND
Enables Direct Path insert mode so that data is appended to the end of the table.
If a table or an index is specified with nologging, this hint applied with an insert statement produces a direct path insert which reduces generation of redo


Undocumented hints:


Note: The above information helped me to optimize queries on Transaction tables which will be updated every second with several new records. The following are the sources which provided me information to publish this post.

Source:

  1. http://www.toadworld.com/KNOWLEDGE/KnowledgeXpertforOracle/tabid/648/TopicID/OTOC91/Default.aspx
  2. http://www.adp-gmbh.ch/ora/sql/hints/index.html
  3. http://download.oracle.com/docs/cd/A97630_01/server.920/a96533/toc.htm

No comments:

Post a Comment