There is no JOIN, no WHERE, only a query as full table scan.
What for parallelism on what do you expect?
If it would be a partioned table, then maybe.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
select * from yieldtransit
cost threshold for parallelism run_value = 1
max degree of parallelism run_value = 0
StatementSubTreeCost = 42.1767
There is no JOIN, no WHERE, only a query as full table scan.
What for parallelism on what do you expect?
If it would be a partioned table, then maybe.
The final operator cannot have parallelism. There is not much point in having a parallel scan and a Gather Streams operator. Also, the major part of the execution time in this case is receiving the data in the client.
But if you try something like
SELECT col, COUNT(*)
FROM yieldtransit
GROUP BY col
This is query is likely to have parallelism, since there is now more work to do.