Example to Unveil the Power of Oracle Cost-Based SQL Optimizer

Discussion in 'Oracle' started by Richard To, Mar 1, 2019.

  1. Richard To

    Richard To Member

    Joined:
    Sep 18, 2017
    Messages:
    87
    Likes Received:
    36
    Trophy Points:
    18
    Gender:
    Male
    A user who has a SQL statement takes a long time to execute, actually the SQL is not very complicated, but it has a very complex execution plan.

    Mimic SQL text :
    SELECT TO_CHAR(SYSDATE, 'yyyy-mm-dd') AS STAT_DATE,
    SYSDATE AS STAT_TIME,
    X.TABLE_NAME,
    NVL(X.NUM_ROWS, 0) AS TABLE_ROWS,
    NVL(ROUND(X.NUM_ROWS * X.AVG_ROW_LEN / 1024, 2), 0) AS TABLE_SIZES,
    Y.CREATED AS CREATE_TIME,
    Z.COMMENTS AS TABLE_COMMENT,
    H .COL_CNT
    FROM ALL_TABLES X,
    ALL_OBJECTS Y,
    ALL_TAB_COMMENTS Z,
    (SELECT H .TABLE_NAME, COUNT(1) AS COL_CNT
    FROM ALL_TAB_COLS H
    WHERE H.OWNER = 'TOSSKA'
    GROUP BY H .TABLE_NAME) H
    WHERE X.TABLE_NAME = Y.OBJECT_NAME
    AND X.TABLE_NAME(+) = Z.TABLE_NAME
    AND X.TABLE_NAME = H.TABLE_NAME
    AND Y.OBJECT_TYPE IN ('TABLE PARTITION', 'TABLE')
    AND X. OWNER = 'TOSSKA'
    AND Y. OWNER = 'TOSSKA'
    AND Z. OWNER = 'TOSSKA'
    ORDER BY X.TABLE_NAME

    Execution Plan:

    The following partial plan steps list about 10% of a total of 214 steps of execution plan.
    <Please download the attach file to see the picture>

    User input the SQL into Tosska SQL Tuning Expert for Oracle, and press Tune to start exploring if there are only potential better query plans from Oracle. User goes back to his daily work and let the computer do the rest of tuning job on his behalf. Finally, there are 5 better alternatives of SQL which are found within an hour.

    Product Highlight
    Tosska SQL Tuning Expert equipped with an AI engine which can try most effective combinations of Hints injection to the problematic SQL. The engine can deeply explore any hidden good execution plans that Oracle CBO cannot discover at the stage of online SQL optimization, but those good plans actually exist in the plans space for the given SQL statement.
    <Please download the attach file to see the picture>

    Benchmark Result:
    Original SQL takes 14 minutes and 7 seconds.
    The best alternative SQL with hints injected is SQL 45 and it takes 4 seconds only.
    SQL45 is running more than 99 times faster than the Original SQL

    Observation of the query plans generated by Oracle CBO
    Tosska SQL Tuning Expert is a Hints-Injection-Based SQL tuning tool without the need of rewriting user’s SQL text. So, various hints injected to a SQL statement and the corresponding query plans generated by Oracle are all potential query plans that Oracle SQL optimizer can provide for the SQL statement.

    Let’s review those generated query plans and why Oracle cannot find the best query plan at the beginning.

    First observation:
    Original SQL’s cost is 1330, but the cost of SQL 130, SQL 135 and SQL 45 are all lower than Original SQL’s cost, why can't Oracle pick up these lower cost plans?

    Reason:
    Oracle cannot explore all potential query plans that it can generate within a short time, otherwise it will take even longer time to optimize a given SQL that might not be fully compensated by an unforeseeable better query plan.

    Second observation:
    SQL 127 and SQL 129 have 3 times higher cost than Original SQL, but the speed is much faster than Original SQL, it means the cost estimation of these two SQL are exceptionally wrong.

    Reason:
    It is the limitation of cost estimation algorithm used in database SQL optimizer. Theoretically, there is no 100% accurate SQL cost estimation algorithm in the market that can handle various environments, and the problem is especially true for complex SQL statements like the above SQL statement.

    Conclusion:
    Oracle has the most sophisticated SQL optimizer in the market. There are a lot of better query plans that Oracle are potential can run faster for your SQL statements. So, whenever you are thinking to upgrade your hardware or cloud service spending, you should first explore the potential power that Oracle SQL optimizer can provide for your SQL statements, and what you need is only a right tool that can unveil the potential power of your Oracle SQL optimizer.
     

    Attached Files:

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