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 query trigger execution plan only when there is FROM statement in the batch?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

The simple answer is you don't get execution plans without table access.

Execution plans are what the optimiser produces: it work out the best way to satisfy the query based on indexes, statistics, etc.

What you have above is trivial and has no table access. Why do you need a plan?

Edit:

A derived table is table access as per Lucero's example in comments

Edit 2:

"Trivial" table access gives constant scans, not real scans or seeks:

  • SELECT * FROM sys.tables WHERE 1=0
  • Lucero's examples in comments
link|improve this answer
Well, the following is just as trivial but it does produce a query plan: SELECT v.d FROM (SELECT @d d) v; (is there a "table access" in there?) – Lucero Apr 10 '11 at 9:44
@Lucero: yes. is a derived or inline table. So this is SELECT v.d FROM MyDerivedTable v; no matter how trivial. – gbn Apr 10 '11 at 9:44
Okay. While we are at it, do you know what the name for values like this is? SELECT v.d FROM (VALUES (123)) v(d); – Lucero Apr 10 '11 at 9:47
@Lucero: the same. Note the plan is just a "constant scan" not proper table access ("index seek" etc) – gbn Apr 10 '11 at 9:50
@gbn, one last question, why do you say that a constant scan is not a real scan? The query plan for this gives a constant scan with 9 rows and a filter on it: SELECT v.d FROM (VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9)) v(d) WHERE v.d<5; – Lucero Apr 10 '11 at 10:01
show 3 more comments
feedback

What you mean by what will trigger execution plan? Also I didn't understand I include actual execution plan and run this query, I don't get an execution plan. Hope this link may help you.

  1. SQL Tuning Tutorial - Understanding a Database Execution Plan (1)
link|improve this answer
I mean that if I include execution plan into this query (pressing Ctrl+M) and run this query, I don't see execution plan for this query. Thanks for the link! – jrara Apr 10 '11 at 9:37
1  
I think it is because of No Database objects used in the query. But you can see an Estimated Execution plan. – Anuraj Apr 10 '11 at 9:43
+1 I was going to point out that it does generate a plan that can be seen with Ctrl + L – Martin Smith Apr 10 '11 at 11:05
feedback

I would assume that a query plan is generated whenever a set-based operation needs to be performed.

link|improve this answer
Note: SELECT * FROM sys.tables WHERE 1=0 gives a constant scan not a table scan. This is SET based but still behaves like your derived table examples – gbn Apr 10 '11 at 9:54
Right. But the question was when an execution plan is generated, and even if the plan has only a constant scan in it it still is an execution plan, no? – Lucero Apr 10 '11 at 9:57
feedback

Yes you need a from clause.

You can do like this

declare @i int
declare @d numeric(9,3)
set @i = 123

select @d = @i
from (select 1) as x(x)

select @d

And in the execution plan you see this

<ScalarOperator ScalarString="CONVERT_IMPLICIT(numeric(9,3),[@i],0)">
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.