Tagged Questions

A execution, or query plan, is the breakdown of steps SQL server uses to get a result. Specifically it is the plan that the SQL server optimizer determines is the best, most efficient, way to get the data. The execution plan can be analyzed to determine what is happening and how to improve ...

learn more… | top users | synonyms

12
votes
4answers
7k views

Measuring Query Performance : “Execution Plan Query Cost” vs “Time Taken”

I'm trying to determine the relative performance of two different queries and have two ways of measuring this available to me: 1. Run both and time each query 2. Run both and get "Query Cost" from the ...
9
votes
5answers
7k views

SQL Server Plans : difference between Index Scan / Index Seek

In a SQL Server Execution plan plans what is the difference between an Index Scan and an Index Seek I'm on sql server 2005
9
votes
7answers
3k views

Performance of SQL “EXISTS” usage variants

Is there any difference in the performance of the following three SQL statements? SELECT * FROM tableA WHERE EXISTS (SELECT * FROM tableB WHERE tableA.x = tableB.y) SELECT * FROM tableA WHERE EXISTS ...
9
votes
1answer
740 views

Any guides on learning how to interpret a SQL query's Execution Plan in SQL Server 2005?

Is there any good article, tutorial or similar references on interpreting the Execution Plan of a query in SQL Server 2005?
6
votes
2answers
106 views

SQL Server execution plans: filter to show bottlenecks?

Is there a way to only show items that are greater than 1% of the batch? I am trying to find bottlenecks in a proc, it contains loops and other logic and 99% of the resulting executing plan I don't ...
6
votes
3answers
266 views

Why does the Execution Plan include a user-defined function call for a computed column that is persisted?

I have a table with 2 computed columns, both of which has "Is Persisted" set to true. However, when using them in a query the Execution Plan shows the UDF used to compute the columns as part of the ...
6
votes
1answer
301 views

How to get the execution plan using LINQ to SQL/ADO.NET

Is it possible to get the execution plan of a LINQ to SQL or ADO.NET Query programatically for displaying in debug information? If so, how?
5
votes
3answers
531 views

SQL optimization - execution plan changes based on constraint value - Why?

I've got a table ItemValue full of data on a SQL 2005 Server running in 2000 compatibility mode that looks something like (it's a User-Defined values table): ID ItemCode FieldID Value -- ...
4
votes
6answers
174 views

Are SQL Execution Plans based on Schema or Data or both?

I hope this question is not too obvious...I have already found lots of good information on interpreting execution plans but there is one question I haven't found the answer to. Is the plan (and more ...
4
votes
7answers
312 views

T/SQL Efficiency and Order of Execution

In regards to the order of execution of statements in SQL, is there any difference between the following performance wise? SELECT * FROM Persons WHERE UserType = 'Manager' AND LastName IN ...
4
votes
1answer
1k views

Different execution plan when executing statement directly and from stored procedure

While developing a new query at work I wrote it and profiled it in SQL Query Analyzer. The query was performing really good without any table scans but when I encapsulated it within a stored procedure ...
4
votes
9answers
882 views

Will my index be used if all columns are not used?

I have an index on columns A, B, C, D of table T I have a query that pulls from T with A, B, C in the WHERE clause. Will the index be used or will a separate index be needed that only includes A, B, ...
3
votes
1answer
120 views

When does the Oracle CBO choose to execute a “merge join cartesian” operation?

From time to time, Oracle seems to prefer a MERGE JOIN CARTESIAN operation over a regular MERGE JOIN. Knowing the data and looking at concrete execution plans, I can see that this operation is usually ...
3
votes
1answer
136 views

Do foreign key constraints influence query transformations in Oracle?

I have a situation like this: create table a( a_id number(38) not null, constraint pk_a primary key (id) ); create table b( a_id number(38) not null ); create index b_a_id_index on b(a_id); ...
3
votes
1answer
76 views

Derby's subquery optimization issue

here is to follow my previous question on Derby. I finally got it to show me the execution plan for my query and intresting values came up: http://pastebin.com/wQAicPAV (SO parser goes crazy so i need ...
3
votes
5answers
92 views

SQL select field causing major performance problem

I have a stored procedure that joins in numerous tables and selects fields from them. One of the tables being a temporary table. SELECT a.Field1, a.Field2, b.Field3, b.Field4, ...
3
votes
2answers
189 views

SQL Server - CLR stored proc in scalar function as filter not weighted properly in query optimizer ==> BAD EXECUTION PLAN

I have a query that looks like the following: SELECT someString FROM ( SELECT someString FROM someTable WHERE someField = 1 ) X WHERE dbo.fnMyClrScalarFunction(X.someString) = 0 The ...
3
votes
4answers
149 views

Caching SQL execution plans

I know SQL server 2005 does some amount of execution plan caching, but would that be enough to create a difference of hours between the same query being run twice? The first time it takes 3 hours the ...
3
votes
4answers
501 views

Question on how to read a SQL Execution plan

I have executed a query and included the Actual Execution Plan. There is one Hash Match that is of interest to me because it's subtree uses a Index Scan instead of an index seek. When I mouse over ...
3
votes
1answer
3k views

Getting rid of Table Spool in SQL Server Execution plan

I have a query that creates several temporary tables and then inserts data into them. From what I understand this is a potential cause of Table Spool. When I look at my execution plan the bulk of my ...
3
votes
3answers
285 views

Execution plan oddity after re-enabling foreign key constraint

I have a weird problem where after setting nocheck on a foreign constraint and re-enabling it, I am getting a same out-dated execution plan that was used with nocheck on. Why would SQL server ...
3
votes
2answers
1k views

SQL Execution Plan shows an “Actual Number of Rows” which is larger than the table size

I have an execution plan for a fairly complex join which shows an index seek being performed on a table with the "Actual Number of Rows" reading ~70,000, when there are in fact only ~600 rows in the ...
3
votes
1answer
1k views

SQL Server - Query Execution Plan For Conditional Statements

How do conditional statements (like IF ... ELSE) affect the query execution plan in SQL Server (2005 and above)? Can conditional statements cause poor execution plans, and are there any form of ...
2
votes
2answers
130 views

query optimizer operator choice - nested loops vs hash match (or merge)

One of my stored procedures was taking too long execute. Taking a look at query execution plan I was able to locate the operation taking too long. It was a nested loop physical operator that had outer ...
2
votes
2answers
433 views

How do I obtain a Query Execution Plan?

In Microsoft SQL Server how can I get a query execution plan for a query / stored procedure?
2
votes
2answers
93 views

Trying to understand sql execution plan

I created a simple table in SQL Server: MemberId INT PRIMARY KEY Identity Name NVARCHAR(100) NULL Description NVARCHAR(250) NULL The only index that was added was a clustered index when I created ...
2
votes
1answer
107 views

SQL Server 2008: Execution plan contains wrong data?

Consider the following situation: There is an xml that contains data @XmlData The @XmlData is extracted into a relational table (@ItemList) A table variable is defined (@Table) The data extracted ...
2
votes
2answers
117 views

SQL Server 2008: Why table scaning when another logical condition is satisfied first?

Consider following piece of code: declare @var bit = 0 select * from tableA as A where 1= (case when @var = 0 then 1 when exists(select null from tableB as B where A.id=B.id) then 1 ...
2
votes
5answers
275 views

SQL Server 2008 execution plan question

I have a question addressed to sql guru. There are two tables with almost identical structure. Based on parameter passed into the stored procedure I need to collect data from one or another table. ...
2
votes
1answer
41 views

Adding inner query is not changing the execution plan

Consider the following queries. select * from contact where firstname like '%some%' select * from (select * from contact) as t1 where firstname like '%some%' The execution plans for both ...
2
votes
1answer
253 views

Query Execution Plan - When is the Where clause executed?

I have a query like this (created by LINQ): SELECT [t0].[Id], [t0].[CreationDate], [t0].[CreatorId] FROM [dbo].[DataFTS]('test', 100) AS [t0] WHERE [t0].[CreatorId] = 1 ORDER BY [t0].[RANK] DataFTS ...
2
votes
2answers
227 views

Poor execution plans when using a filter and CONTAINSTABLE in a query

We have an interesting problem that I was hoping someone could help to shed some light on. At a high level the problem is as below: The following query executes quickly (1 second): SELECT SA.* FROM ...
2
votes
4answers
158 views

Does the sequence in which we use join in a query effects its execution time?

Does the sequence in which we use join in a query effects its execution time ?
2
votes
7answers
2k views

SQL order of operations

If I run the following SQL query SELECT * FROM A LEFT JOIN B ON A.foo=B.foo WHERE A.date="Yesterday" Does the WHERE statement get evaluated before or after the join? If after, what would be a ...
2
votes
7answers
1k views

Stored Procedure Execution Plan - Data Manipulation

I have a stored proc that processes a large amount of data (about 5m rows in this example). The performance varies wildly. I've had the process running in as little as 15 minutes and seen it run for ...
1
vote
1answer
35 views

Execution Plan Time is always 1 ms

I try to run an executin plan like this: ALTER SESSION SET timed_statistics = TRUE; set autotrace on explain; SELECT ename, dname FROM emp e, dept d WHERE e.deptno = d.deptno AND e.hiredate > ...
1
vote
4answers
66 views

Execution plan over query with temp tables

I've a stored procedure that does something like this: SELECT Id INTO #temp FROM table WHERE ... DELETE FROM #temp INNER JOIN table2 ON a=b WHERE ... But it's running slowly. When I try to view ...
1
vote
1answer
122 views

SQL Server pick random (or first) value with aggregation

How can I get SQL Server to return the first value (any one, I don't care, it just needs to be fast) it comes across when aggregating? For example, let's say I have: ID Group 1 A 2 ...
1
vote
2answers
97 views

MYSQL performance issue concat in select or in where

I used to develop databases under ms-sql, and now I've moved to mysql. Great progress. The problem is that I don't have any tool to see graphically the query execution plan... EXPLAIN doesn't really ...
1
vote
1answer
33 views

How is working the “Query cost” in the execution plan?

I am trying to increase one of my request performance. My request is made of 10 different select . The actual production query is taking 36sec to execute. If I display the execution plan, for one ...
1
vote
1answer
73 views

HSQL 2.2.4, bad query plan

Why does IR1 need a full scan? table=INTR alias=IR1 access=FULL SCAN IR2 did not need a full scan: table=INTR alias=IR2 access=INDEX PRED It is the exact same join: EXPLAIN PLAN FOR SELECT * ...
1
vote
1answer
85 views

Query plan or execution plan specifies cost in percentagewise. What is the percentagewise according to?

What is the cost, percentage-wise, in query plan execution? SELECT a.au_fname + ''+ a.au_lname AS 'Author Name', t.title FROM authors a INNER JOIN titleauthor ta ON (a.au_id = ta.au_id) INNER JOIN ...
1
vote
4answers
130 views

SQL Server: what will trigger execution plan?

If I have statement DECLARE @i INT; DECLARE @d NUMERIC(9,3); SET @i = 123; SET @d = @i; SELECT @d; and I include actual execution plan and run this query, I don't get an execution plan. Will the ...
1
vote
4answers
341 views

Sql indexes vs full table scan

While writing complex SQL queries, how do we ensure that we are using proper indexes and avoiding full table scans? I do it by making sure I only join on columns that have indexes(primary key, unique ...
1
vote
1answer
152 views

SQL Server Query is faster in SSMS when including execution plan

In SQL Server 2005 management studio I am testing a query which uses some table variables, one of which has a clustered unique constraint on it. I am noticing that the total execution time actually ...
1
vote
1answer
329 views

SQL Server sp_ExecuteSQL and Execution Plans

I have a query which is superfast in SQL Server Management STudio and super slow when run under sp_ExecuteSQL. Is this to do with caching of execution plans not happening when run under spExecuteSQL? ...
1
vote
2answers
217 views

Are execution plan for functions cached in SQL server?

Can any body help me in understanding if the execution plan for functions cached in SQL server? Any online resource for this? Thanks Ashwani
1
vote
2answers
135 views

Different execution plan for similar queries

I am running two very similar update queries but for a reason unknown to me they are using completely different execution plans. Normally this wouldn't be a problem but they are both updating exactly ...
1
vote
2answers
109 views

SQL Server 2008 - Bit Param Evaluation alters Execution Plan

I have been working on migrating some of our data from Microsoft SQL Server 2000 to 2008. Among the usual hiccups and whatnot, I’ve run across something strange. Linked below is a SQL query that ...
1
vote
2answers
368 views

query execution plan : missing index

There are two tables that I join them together, one of them is a temp table and I create an index after creating the table. But it is said in the query execution plan above. what should I consider ...

1 2