It seems we can’t find what you’re looking for. Perhaps searching can help.
By Steve Jones
I think we might have forgotten this a bit, but on one of the...
By Brian Kelley
I refresh my test SQL Servers at least monthly with a fresh VM. Setting...
By Chris Yates
Embracing Total Responsibility In every organization there comes a moment when teams must choose...
I am trying to create a subscription that posts to a one drive directory. ...
Comments posted to this topic are about the item What is Delayed Durability in...
Comments posted to this topic are about the item Which MAXDOP?
I have a SQL Server 2022 instance with this setting:
EXECUTE sp_configure 'max degree of parallelism', 4; GOI then run this:
SELECT ProductID, OrderQty, SUM(LineTotal) AS Total FROM Sales.SalesOrderDetail WHERE UnitPrice < $5.00 GROUP BY ProductID, OrderQty ORDER BY ProductID, OrderQty OPTION (MAXDOP 2); GOWhat is the maxdop for my query? See possible answers