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 titles t
ON (ta.title_id = t.title_id)

select * from authors
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

In SQL Server:

Cost percentage is the relative percentage to the whole batch of queries executing. If you are executing a single query, the percentage for that would be always 100%.

Each query in the batch that is analyzed is displayed, including the cost of each query as a percentage of the total cost of the batch.

http://msdn.microsoft.com/en-us/library/ms178071.aspx

link|improve this answer
I ran 2 queries and both of them show 100% – sly_Chandan May 17 '11 at 5:38
@sly_Chandan: Did you run both of them in the same batch? – sorcerer May 17 '11 at 5:42
I ran both of them in query analyser or editor – sly_Chandan May 17 '11 at 5:49
But I see only one query in the question. So you ran this and another query at the same time? – sorcerer May 17 '11 at 5:52
Yes. What do u mean by batch. Which batch are u talking about? – sly_Chandan May 17 '11 at 6:51
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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