Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
1k views

Guide to reading, comparing, and interpretting Execution Plans in SQL Server

I'm looking for a good, well-written and explained guide on reading and comparing execution plans in SQL Server. This is for more my own edification as well as for sharing with others. If you want ...
10
votes
5answers
3k views

Reset SQL Server execution plan

I've looked all over for this command....what's the command to reset the SQL Server's execution plan?
8
votes
3answers
103 views

Why are the performances of these 2 queries so different?

I have a stored proc that searches for products (250,000 rows) using a full text index. The stored proc takes a parameter that is the full text search condition. This parameter can be null, so I ...
8
votes
4answers
287 views

Why is this an Index Scan and not a Index Seek?

Here's the query: SELECT top 100 a.LocationId, b.SearchQuery, b.SearchRank FROM dbo.Locations a INNER JOIN dbo.LocationCache b ON a.LocationId = b.LocationId WHERE a.CountryId = 2 ...
8
votes
7answers
250 views

What are SQL Execution Plans and how can they help me?

I've been hearing a lot lately that I ought to take a look at the execution plan of my SQL to make a judgment on how well it will perform. However, I'm not really sure where to begin with this ...
8
votes
5answers
6k 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
7
votes
5answers
328 views

How to inline a variable in PL/SQL?

The Situation I have some trouble with my query execution plan for a medium-sized query over a large amount of data in Oracle 11.2.0.2.0. In order to speed things up, I introduced a range filter that ...
7
votes
2answers
856 views

Physical operators in SQL Server execution plans: what are rebinds, rewinds and number of executions?

I'm trying to understand physical operators in SQL Server execution plans. This page is quite helpful: http://technet.microsoft.com/en-us/library/ms191158.aspx SSMS 2008 shows some physical operator ...
7
votes
7answers
1k views

EXPLAIN SELECT in other databases

I found EXPLAIN SELECT query very useful in MySQL because it gives information on how SQL will be executed and gives the opportunity to analyze, for e.g., missing indexes you should add in order to ...
6
votes
4answers
229 views

Change in query plan and execution time with TOP and ESCAPE

One of the query (given below) is taking 90+ seconds to execute. It returns ~500 rows from a rather large table LogMessage. If ESCAPE N'~' is removed from the query it executes within few seconds. ...
6
votes
3answers
245 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
2answers
410 views

Same query - different execution plans

SQL 2008. I have a test table: create table Sale ( SaleId int identity(1, 1) constraint PK_Sale primary key, Test1 varchar(10) null, RowVersion rowversion not null ...
6
votes
1answer
117 views

Tools for visualising execution xml plans as HTML

Are there any tools / XSLT style sheets around for transforming the XML execution plans returned by Microsoft Visual Studio into HTML? Failing that, does anyone know of any techniques that can be ...
6
votes
2answers
362 views

At what cardinality does SQL Server switch to an index scan (vs. seek)

Assuming that a table contains sufficient information to warrant an index seek, at what cardinality will SQL Server (or PostgreSQL) opt for an index scan? The reason I ask this is I previously posted ...
6
votes
5answers
486 views

SQL Query execution shortcut OR logic?

I have three tables: SmallTable (id int, flag1 bit, flag2 bit) JoinTable (SmallTableID int, BigTableID int) BigTable (id int, text1 nvarchar(100), otherstuff...) SmallTable has, at most, a ...
5
votes
3answers
134 views

User-Defined Functions - Are they poor coding practice?

I'm writing reports with fairly complex datasets, lots of joins. To simplify matters, and because I'm basically an OO developer, I've been writing little (usually scalar) functions to do the work that ...
5
votes
1answer
270 views

Combining datasets with EXCEPT versus checking on IS NULL in a LEFT JOIN

I'm currently working my way through the Microsoft SQL Server 2008 - Database Development (MCTS Exam 70-433) certification. In one of the earlier chapters on Combining Datasets, I came across the ...
5
votes
3answers
495 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 -- ...
5
votes
4answers
413 views

SQL Server query plan differences

I'm having trouble understanding the behavior of the estimated query plans for my statement in SQL Server when a change from a parameterized query to a non-parameterized query. I have the following ...
5
votes
2answers
3k views

SQL poor stored procedure execution plan performance - parameter sniffing

I have a stored procedure that accepts a date input that is later set to the current date if no value is passed in: CREATE PROCEDURE MyProc @MyDate DATETIME = NULL AS IF @MyDate IS NULL SET ...
4
votes
2answers
43 views

How can I make MS-Access choose a different/the right execution plan for my query

I have a problem with a relatively simple query and the execution plan Access choose for it. The query is of this form SELECT somethings FROM A INNER JOIN (B INNER JOIN (C INNER JOIN D ON ...) ON ...
4
votes
2answers
104 views

Strange problem with SQL Server procedure execution plan

I was wondering if you guys could help me get to the bottom of a weird problem I have recently had on SQL Server. I have a stored procedure (lets call SPold) which is reasonably large with a lot of ...
4
votes
2answers
171 views

Why does this SQL result in Index Scan instead of an Index Seek?

Can someone please help me tune this SQL query? SELECT a.BuildingID, a.ApplicantID, a.ACH, a.Address, a.Age, a.AgentID, a.AmenityFee, a.ApartmentID, a.Applied, a.AptStatus, a.BikeLocation, ...
4
votes
4answers
290 views

Two radically different queries against 4 mil records execute in the same time - one uses brute force

I'm using SQL Server 2008. I have a table with over 3 million records, which is related to another table with a million records. I have spent a few days experimenting with different ways of querying ...
4
votes
2answers
2k views

How to Clear down Query Execution Statistics in SQL Server 2005/2008

Based on getting Query Execution Statistics using this extremely useful piece of SQL obtained from this post Most Executed Stored Procedure - Stack Overflow: SELECT TOP 100 qt.TEXT AS 'SP Name', ...
4
votes
3answers
461 views

SQL Server 2005 Clustered Index Query Speed

Our sites are getting pounded pretty hard so we're taking a look into optimizing some of our existing queries. While looking into this we ran across several queries whose execution plan was about 4-5 ...
4
votes
2answers
2k views

How can I work around SQL Server - Inline Table Value Function execution plan variation based on parameters?

Here is the situation: I have a table value function with a datetime parameter ,lest's say tdf(p_date) , that filters about two million rows selecting those with column date smaller than p_date and ...
3
votes
3answers
34 views

Need to Know about query execution plan

Is there any way to view the mysql/oracle query execution plan as like java debugging. i want to know how mysql/oracle executes our query and what are the steps involved in execution.
3
votes
1answer
121 views

Entity Framework cached query plan performance degrades with different parameters

I have the following problem. Background I'm trying to implement an autocomplete selector with MVC3, EF4 and jquery over a table wit 4.5 million records. This is the table: CREATE TABLE ...
3
votes
3answers
84 views

Does altering a stored procedure expire cached execution plans?

Does executing a ALTER PROCEDURE statement for a stored procedure cause all cached execution plans for that stored procedure to become invalid and expire in SQL Server 2008 / 2005?
3
votes
1answer
68 views

Optimizer statistics regarding sorting

I am a newbie in Oracle 11g and I have one question regarding the execution plan. I ran a query and even though there is no ORDER BY clause in the query, the statistics on the execution plan still ...
3
votes
1answer
167 views

SQL Server edition upgrade and cached execution plans

I've just upgraded SQL Server 2008 R2 Express Edition to the SQL Server 2008 R2 Standard edition. The setup tool has performed the upgrade without any problems. However, the promised performance ...
3
votes
3answers
251 views

How to store query execution plan so that they can be used later

My applications runs queries against a sql server database. In many cases I can see the benefit of an execution plan: for example I click for the first time on a button to SELECT * from Tasks WHERE ...
3
votes
3answers
206 views

Why does this sql query do a key lookup?

I have a table User with a bunch of indexes. One of them is a unique index on the AccountIdentifier column. Since this is a unique index, why is a key lookup required in addition to the index seek? ...
3
votes
2answers
265 views

Searching for table/index scans

Does anyone have a query which searches through SQL2005/2008's plan cache identifying queries or stored procedures which have table/index scans within their execution plans?
3
votes
3answers
280 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
6answers
2k views

Different Execution Plan for the same Stored Procedure

We have a query that is taking around 5 sec on our production system, but on our mirror system (as identical as possible to production) and dev systems it takes under 1 second. We have checked out ...
2
votes
1answer
46 views

Wrong Plan for CONTAINS condition in the MS SQL

Sql server 2008 R2 I have two queries DECLARE @title NVARCHAR(500) = '"Finite" AND "Elements"' select * from papers p where (@title = '""' OR CONTAINS(p.name, @title)) select * from papers p where ...
2
votes
2answers
68 views

Question on Query execution

In the below query if the Patients table has 1000 records how many times TableValueFunction executes? Only once or 1000 time? This is a query in a Stored Procedure, do you have a better idea to ...
2
votes
1answer
98 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
1answer
220 views

Non-negligible execution plan difference with Oracle when using jdbc Timestamp or Date

I'm analysing Oracle execution plans and found an astonishing fact. Check out this query. The hint is just to display that I have an index and I'd expect Oracle to use it for range scans: // ...
2
votes
2answers
60 views

What influences a query plan's performance besides what is shown in Mgt Studio's graphical output?

(Note: This was formerly titled "How do a query plan's estimated executions/IO/CPU/Executions, etc, influence performance, all other things being equal?", but I renamed it now that I know the answer.) ...
2
votes
2answers
227 views

How to keep cursors in v$sql_plan alive longer

I'm trying to analyse a query execution plan in my Oracle database. I have set alter system set statistics_level = all; Such that I can compare estimated cardinalities and times with actual ...
2
votes
2answers
68 views

SQL Server 2008 seems to be picking the PK Index for every query, even if a better one seems to exist

It sounds like a similar situation to what's asked here, but I'm not sure his details are the same as mine. Basically I have a relational table, we'll call it User: User ----------- int Id ...
2
votes
2answers
197 views

SQL Server 2005 execution plan problem

Currently, I found one query in our application and its execution plan is "index scan".Well, here are some background: it has three columns and typed as "idType:bigint" there is only 200 blew items ...
2
votes
3answers
266 views

SQL Server non-clustered Index never shows up in execution plan

I have a database table called tbl_event with the non-clustered indexes IDX_Event_Folder and IDX_Event_Time defined as: CREATE NONCLUSTERED INDEX [IDX_Event_Folder] ON [dbo].[tbl_event]([nobjectid] ...
2
votes
2answers
427 views

Why MySQL would use index intersection instead of combined index?

From time to time I encounter with a strange MySQL behavior. Assume I have indexes (type, rel, created), (type), (rel). The best choice for a query like this one: SELECT id FROM tbl WHERE rel = 3 AND ...
2
votes
1answer
100 views

Preferred way to access data within XML columns in SQL Server

Background Recently I've started to use XML a lot more as a column in SQL Server 2005. During a bit of downtime yesterday, I noticed that two of the link tables I used a really just in the way and it ...
2
votes
1answer
437 views

SQL Queries, execution plans and “Parallelism”

So I'm (still) going through some slow legacy sql views used to do calculate some averages and standarddeviations on a (sometimes) large set of data. What I end up with are views joining views joining ...

1 2 3