A SQL example to show why traditional SQL rewrite tuning may not be applicable

Discussion in 'Oracle' started by Richard To, Jun 5, 2019.

  1. Richard To

    Richard To Member

    Joined:
    Sep 18, 2017
    Messages:
    87
    Likes Received:
    36
    Trophy Points:
    18
    Gender:
    Male
    The following SQL is simple, but the explain plan is a little bit complex. Oracle SQL optimizer uses an adaptive plan to execute the SQL statement. You can see the SQL’s syntax is normal, there is not much syntax rewrite which can be helpful to improve the SQL speed manually. The emps_salary index of employees and emps_dept index of departments are both used in a proper way. The SQL takes 12.45 seconds to finish, it still seems longer than what I expected.

    [​IMG]

    If traditional SQL rewrite is not applicable for this SQL, how about using a SQL tuning tool, Tosska SQL Tuning Expert, to see if there are any potential better execution plans are missed out by Oracle SQL optimizer for this SQL.

    You can download the product from here:

    https://tosska.com/tosska-sql-tuning-expert-tse-oracle-free-download/

    Let me paste the SQL into SQL Editor of Tosska SQL tuning Expert and press <Tune> button with default intelligent level 2.

    A better SQL 7 with hints injected is found after a few minutes of tuning process. The SQL 7 with a new hints /*+ NO_USE_HASH(@SEL$1 DEPARTMENTS EMPLOYEES) */ is more than 8 times faster than the original SQL statement. This hints is not to instruct Oracle SQL optimizer to do something specific, but it tells Oracle not to use hash join and have freedom to choose other query plans which are even with higher cost.

    [​IMG]

    With the new hints /*+ NO_USE_HASH(@SEL$1 DEPARTMENTS EMPLOYEES) */ injected, Oracle decided to use a Merge Join to execute this SQL. Although the cost of this SQL 7 has a relatively higher cost of 33,536 than the original SQL cost of 31,229, the performance of SQL 7 is significantly better. It is a typical SQL optimizer’s cost-estimation error even for those relevant tables’ statistics which are 100% accurate. If we use traditional SQL syntax rewrite technique to improve this SQL, it will be very difficult. With the AI engine provided by Tosska SQL Tuning Expert, SQL tuning is now as easy as just a point and click.

    [​IMG]
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice