Oracle forced index using HINT, oraclehint

Source: Internet
Author: User

Oracle forced index using HINT, oraclehint

First of all, it depends on whether your Oracle optimizer uses RBO or CBO,
(1) If RBO is used, it will be performed in the Rule Order.
(2) If CBO is used, you can use the HINT method to modify it.

Syntax:SELECT/* + index (table IndexName )*/
If an alias is used in a query statement, the table in the preceding statement must be an alias. Otherwise, a forced index is not executed.

Example:

Select/* + INDEX (t IDX_DATE) */from student t where t. birthday> to_date ('2017-12-28 00:00:00 ', 'yyyy-mm-dd hh24: mi: ss') and t. birthday <to_date ('2017-12-28 23:59:59 ', 'yyyy-mm-dd hh24: mi: ss') group by t. class


 

 

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.