'What the decimal number in seconds bellow the cost percentage means in the SQL Server Graphical Execution Plan?
Solution 1:[1]
It is a measure of elapsed time from an actual (contrasted with estimated) execution plan. In your specific example, it's saying that it took 0.062 seconds (i.e. 62 milliseconds). Interpreting that number depends on whether you're in batch mode or row mode. This article is a good read. Two excerpts from it:
In pure batch mode plans, you need to manually sum current and child operator times to obtain the cumulative elapsed time at any given node.
The row mode operators will include a cumulative total up to that point in the plan, including all child operators.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Ben Thul |

