How to optimize this SQL query?
In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
- Description of the steps you can take to speed up the query.
- The optimal indexes for this query, which you can copy and create in your database.
- An automatically re-written query you can copy and execute in your database.
The optimization process and recommendations:
- Avoid Calling Functions With Indexed Columns (query line: 14): When a function is used directly on an indexed column, the database's optimizer won’t be able to use the index. For example, if the column `start_ts` is indexed, the index won’t be used as it’s wrapped with the function `to_char`. If you can’t find an alternative condition that won’t use a function call, a possible solution is to store the required value in a new indexed column.
- Avoid Calling Functions With Indexed Columns (query line: 16): When a function is used directly on an indexed column, the database's optimizer won’t be able to use the index. For example, if the column `start_ts` is indexed, the index won’t be used as it’s wrapped with the function `to_char`. If you can’t find an alternative condition that won’t use a function call, a possible solution is to store the required value in a new indexed column.
- Create Optimal Indexes (modified query below): The recommended indexes are an integral part of this optimization effort and should be created before testing the execution duration of the optimized query.
Optimal indexes for this query:
CREATE INDEX customer_idx_cust_id ON customer (cust_id);
CREATE INDEX profile_idx_cust_id ON profile (cust_id);
The optimized query:
SELECT
to_char(t.start_ts,
'YYYY-MM-DD HH24:MI'),
COUNT(CASE
WHEN f.fault = 'N' THEN 1 END) success,
COUNT(CASE
WHEN f.fault = 'Y' THEN 1 END) failure
FROM
customer t,
profile f
WHERE
1 = 1
AND t.cust_id = f.cust_id
AND to_char(t.start_ts, 'YYYY-MM-DD HH24:MI:SS') BETWEEN '2017-03-01 00:00:00' AND '2017-05-01 23:59:59'
GROUP BY
to_char(t.start_ts,
'YYYY-MM-DD HH24:MI')
ORDER BY
to_char(t.start_ts,
'YYYY-MM-DD HH24:MI')