A execution, or query plan, is the breakdown of steps SQL server uses to get a result. This tag is specific to SQL server query execution plans.

learn more… | top users | synonyms

0
votes
1answer
43 views

SQL Server sp_recompile on a table

When sp_recompile is run against a table, I understand that all stored procedures and triggers dependent on that table will be recompiled. What I don't understand is what parameters SQL Server uses ...
1
vote
2answers
143 views

hash value for sql statement

When we execute any sql statement in Oracle, a hash value is being assigned to that sql statement and stored into the library cache. So, that later, if another user request the same query, then Oracle ...
2
votes
2answers
48 views

Who triggered my trigger?

My situation: I want to make a historical table of the use of a truly sensitive table I have in db2. That table is being accessed by a generic user through some static plans (already compiled). What ...
2
votes
3answers
74 views

Where is the query plan from an SSRS report rendering

Hi I have a simple question. But it lead to another question. I want to delete the query plan for a stor proc i ran. So I ran the proc using exec dbo.uspNameOfProc and then checked the plan chace ...
7
votes
2answers
313 views

Explain MySQL explain execution plan maths, difference between two plans

I've got a basic MySQL performance question related to explain. I have two queries that return the same result and I am trying to understand how to make sense of the EXPLAIN of the execution plans. ...
1
vote
2answers
133 views

Explain optimal query for large table with clustered index in SQL Server 2008

I'm working on a very large table (approximately 2.7 million rows added per day), which has the following structure: CREATE TABLE [dbo].[Result]( [ResultDate] [date] NOT NULL, [Thing1Id] ...
1
vote
2answers
61 views

will PostgreSQL optimize LIKE '%'?

I wonder if SELECT * FROM foo will execute faster than SELECT * FROM foo WHERE name LIKE '%' assuming name is NOT NULL? Any references to documentation?
0
votes
0answers
76 views

Why the same query takes more time in two different servers? [closed]

I have two MySql servers ONE (Version 5.0.32) and TWO (Version 5.1.63) If I run the same query in the two servers, I get, in ONE: 0.07 sec and in TWO: more than 1 minute. I've passed the EXPLAIN test ...
1
vote
2answers
144 views

SQL Server : delay before output (a print statement) is produced

I may have a slight feeling as to what is going on, but I thought I'd ask to get confirmation, and potentially look at an alternative. As a slight background, I've written a C# application that is ...
3
votes
1answer
146 views

SQL Server - Aggregate with group by is faster than aggregate without

I'm having difficulty figuring out why a particular execution plan is forced in one situation, and not in the other. Example: select min(COLUMN) from TABLE where FK_COLUMN = 1; vs. select ...
3
votes
1answer
321 views

Oracle query execution plan

I am little confused over the execution plan of an Oracle query. This is in Oracle Enterprise Edition 11.2.0.1.0 on platform IBM AIX 6.1. I have a table TEST1 (1 million rows) and another table TEST2 ...
3
votes
1answer
233 views

a query using covering index, merge join, hash join

I am tuning a query on SQL Server 2005. Please note the real question is at the end. I have following query, both pto and ph has about 30million rows. The query initially run very slow (3 mins). So I ...
3
votes
2answers
2k views

Why do I get “The log file for database 'tempdb' is full”

Let we have a table of payments having 35 columns with a primary key (autoinc bigint) and 3 non-clustered, non-unique indeces (each on one int column). Among the table's columns we have two datetime ...
2
votes
1answer
98 views

Nonclustered Index Insert Showplan Operator - Missing?

I have seen several execution plan examples and they displayed "Nonclustered Index Insert Showplan Operator". I went ahead and created a table with non-clustered index. If I insert there and display ...
0
votes
1answer
328 views

Performance issue using new paging stynax in SQL Server 2012 (OFFSET n ROWS FETCH NEXT m ROWS ONLY)

I found a post about new paging stynax in SQL Server 2012. Like SELECT p.ProductName FROM Products p ORDER BY p.ProductID OFFSET 10 ROWS FETCH NEXT 10 ROWS ONLY That was great. But when I look ...
3
votes
1answer
142 views

SQL Server query through view and query through base tables get different execution plan

I have a view which is basically joining some tables and there are no indexes on the view. When I query against the view(joined with another table), the performance is bad, which takes about 10 ...
0
votes
0answers
63 views

Is it possible to optimise ShowPlan XML in SQL Server

I have a reasonably complex query that takes under a second to run once SQL server has established the query plan (satisfactory). However the first time the query runs the event ShowPlanXML according ...
-1
votes
1answer
826 views

Oracle Explain Plan for Query with Collection using Table function

How to generate Plan in Oracle for the query using some Collection in exists clause using table function e.g. CREATE TYPE TYP_EMP AS OBJECT( EMPNO NUMBER(4), ENAME VARCHAR2(10), JOB ...
2
votes
1answer
117 views

IOT vs Heap in Oracle. Help me make choice

I've read many information about IOT, and now in my head gruel... Pls, help me solve question. Have table, that have structure: ID (PK); ID_DRUG_NAME (a); ID_FROM (b); ID_PROVIDER (c); DELETED; ...
5
votes
2answers
426 views

Why is performance increased when moving from a derived table to a temp table solution?

I'm reading "Dissecting SQL Server Execution Plans" from Grant Fritchey and it's helping me a lot to see why certain queries are slow. However, I am stumped with this case where a simple rewrite ...
2
votes
2answers
464 views

SQL Server 2008: execution plan depends on date parameters

I have a SQL query whose execution plan depends on the DateTime parameters that I provide. I understand that if I have a condition like: WHERE Date > '2012-02-28' AND Date < '2012-01-01' then ...
1
vote
1answer
111 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
5answers
2k 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 ...
5
votes
2answers
3k 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 ...
3
votes
1answer
1k 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 ...
4
votes
1answer
769 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
343 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 ...
1
vote
1answer
532 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
495 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 ...
0
votes
0answers
45 views

A LEFT JOIN B ON @IncludeBJoin = 1 AND B.AID = A.ID WHERE @IncludeBJoin = 0 OR B.ID IS NOT NULL

I know that the temptation to use generic stored procedures for code reuse can be a trap, but I don't know if this method of parameterizing a query has anything but a constant performance cost. ...
7
votes
2answers
533 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 ...
19
votes
2answers
17k 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
450 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 ...
1
vote
3answers
285 views

weird execution plan of a SQL Server query

Context: SQL Server 2008. There are 2 tables to inner join. The fact table, which has 40 million rows, contains the patient key and the medications administered and other facts. There is a unique ...
1
vote
1answer
109 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 ...
2
votes
1answer
185 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 ...
1
vote
1answer
206 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 * ...
0
votes
1answer
643 views

SQL Server Rules for Optimizing Sort?

I have a convoluted MSSQL 2008 query, and the show plan has 40% of the work in a sort operation (there are several mil rows and the query does a top 15000), the rest of the plan is index seeks and ...
3
votes
5answers
143 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, ...
0
votes
2answers
126 views

stored procedure optimized execution plan?

If you have multiple if conditions in a stored procedure, I'm guessing the execution plan is going to be less optimized so is the latter below better? if not exists (select * from accounts) begin ...
1
vote
1answer
213 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 ...
8
votes
1answer
691 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
820 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?
0
votes
2answers
536 views

In SQL Server, how to allow for multiple execution plans for a single query in a SP without having to recompile every time?

In SQL Server, what is the best way to allow for multiple execution plans to exist for a query in a SP without having to recompile every time? For example, I have a case where the query plan varies ...
1
vote
4answers
334 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 ...
0
votes
2answers
1k views

Getting query / execution plan for dynamic sql in SQL Server [duplicate]

Possible Duplicate: How do I obtain a Query Execution Plan? how can I see the execution plan in SQL Server 2005 for a dynamic sql that is executed? I cannot save any files on the computer ...
2
votes
4answers
2k 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 ...
4
votes
6answers
301 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 ...
0
votes
1answer
350 views

SQL Server Capture Execution Plan

I want to capture execution plan only for long running query (5 minutes) for this I have used extended event but the plan_handle which is returned by extended events does not produce an execution plan ...
3
votes
2answers
248 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 ...

1 2