[Solved] How do you interpret SQL Server Execution Plan results

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:

  1. Description of the steps you can take to speed up the query.
  2. The optimal indexes for this query, which you can copy and create in your database.
  3. An automatically re-written query you can copy and execute in your database.
The optimization process and recommendations:
  1. 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.
  2. Replace Join With Exists To Avoid Redundant Grouping (modified query below): When a joined table isn’t used anywhere other than in the WHERE clause, it's equivalent to an EXISTS subquery, which often performs better. In cases where the DISTINCT or GROUP BY clause contains only columns from the Primary key, they can be removed to further improve performance, as after this transformation, they are redundant.
Optimal indexes for this query:
CREATE INDEX jobs_idx_viewable_timestamp ON jobs (viewable,timestamp);
CREATE INDEX processes_idx_group_id ON processes (group,id);
CREATE INDEX status_idx_id_name ON status (id,name);
CREATE INDEX tasks_idx_id_processid ON tasks (id,processid);
The optimized query:
SELECT
        DISTINCT TOP 500 j.correlationid,
        j.timestamp 
    FROM
        jobs AS j 
    WHERE
        (
            j.viewable = 1 
            AND 1 = 1 
            AND 1 = 1
        ) 
        AND (
            EXISTS (
                SELECT
                    1 
                FROM
                    status AS s 
                INNER JOIN
                    tasks AS t 
                INNER JOIN
                    processes AS p 
                WHERE
                    (
                        (
                            (
                                (
                                    j.statusid = s.id
                                ) 
                                AND (
                                    s.name IN (
                                        'Dead', 'Process Complete'
                                    )
                                )
                            ) 
                            AND (
                                j.taskid = t.id
                            )
                        ) 
                        AND (
                            t.processid = p.id
                        )
                    ) 
                    AND (
                        p.[group] = 'SapDocument'
                    )
            )
        ) 
    ORDER BY
        j.timestamp DESC

Related Articles



* original question posted on StackOverflow here.