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 select I have a query cost of 18%.

So I change a in clause (in this select) with an xml query (http://www.codeproject.com/KB/database/InClauseAndSQLServer.aspx).

The new query now takes 28 sec to execute, but sql server tells me that the above select has a query cost of 100%. And this is the only change I made. And there is no parallelism in any query.

PRODUCTION : 36sec, my select is 18% (the others are 10%).

NEW VERSION : 28sec, my select is 100% (the others are 0%).

Do you have any idea how sql server compute this "query cost" ? (I start to believe that it's random or something like that).

link|improve this question

77% accept rate
Not random, certainly; it's just your understanding that's lacking. – duffymo Aug 18 '11 at 15:28
Thank you for this really interesting answer , do you mind to improve my knowledge, that's the purpose of my question. – remi bourgarel Aug 18 '11 at 15:29
feedback

1 Answer

up vote 1 down vote accepted

Query cost is a unitless measure of a combination of CPU cycles, memory, and disk IO.

Very often you will see operators or plans with a higher cost but faster execution time.

Primarily this is due to the difference in speed of the above three components. CPU and Memory are fairly quick, and also uncommon as bottlenecks. If you can shift some pressure from the disk IO subsystem to the CPU, the query may show a higher cost but should execute substantially faster.

If you want to get more detailed information about the execution of your specific queries, you can use:

SET STATISTICS IO ON
SET STATISTICS TIME ON

This will output detailed information about CPU cycles, plan creation, and page reads (both from disk and from memory) to the messages tab.

link|improve this answer
Is there any way to see the detail of the costs ? And is there any way to see the execution time of every select ? How is this costs relevant ? the purpose of all this is to improve execution time no ? – remi bourgarel Aug 18 '11 at 15:35
Time isn't always the most important factor, especially in a shared warehouse scenario. To see details you can use the statistics options I mentioned in the answer. – JNK Aug 18 '11 at 15:38
feedback

Your Answer

 
or
required, but never shown

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