0
votes
4answers
51 views
Help understanding SQL Server 2005 execution plan
One of my stored procedure has long execution time (average around 4 to 7 minutes).
Now I trying to tweak it an make it run faster.
I am looking at execution plan and two things …
1
vote
5answers
52 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?
5
votes
4answers
69 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 …
4
votes
7answers
182 views
EXPLAIN SELECT in other databases
Hi,
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 …
1
vote
3answers
53 views
Peculiar case with SQL Server, indices and parameters
I have a table, let's call it History. The primary key (aka Clustered Index) is called HIST_ID. The table has some 2300 rows in the development DB. Now consider the following two q …
0
votes
3answers
31 views
Is there an application for displaying some kind of query plan for a Linq to object query?
I'm looking for an application to display what a linq expression would do, in particular regarding the usage of multiple access to the same list in a query.
Better yet, the tool w …
1
vote
4answers
65 views
Execution Plans for Databases
Question 1:
When we execute a query, does the execution plan change for each and every time when executing the query?
If yes, any performance hit?
If no, then if we change s …
1
vote
2answers
65 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?
0
votes
3answers
58 views
SQL Server: Compare Index Performance
How can I compare the performance of an Index on a table using the Query Analyzer?
I would like to run the same query through the Estimated Execution Plan twice, once using the in …
3
votes
2answers
415 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 @ …
1
vote
2answers
80 views
How does SQL server evaluate the cost of an execution plan which contains a user defined function?
I have a stored procedure which filters based on the result of the DATEADD function - My understanding is that this is similar to using user defined functions in that because SQL s …
1
vote
3answers
154 views
How does SQL server work out the estimated number of rows?
I'm trying to debug a fairly complex stored procedure that joins across many tabls (10-11). I'm seeing that for a part of the tree the estimated number of rows drasticly differs fr …
2
votes
6answers
824 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.
W …
4
votes
3answers
227 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 executio …
0
votes
2answers
107 views
How can a node in an execution plan have smaller costs than its child?
I always thought that a node in an execution plan can only be executed after its children have executed, and thus the total cost of a node has to be greater or equal than the cost …
