Modifying Max Degree Of Parallelism To 1 For Azure Sql Server
I'm able to query 'max degree of parallelism(maxdop)' value from sys.configurations but unable update the same for an azure-sql server. I'm not very sure if there is an alternativ
Solution 1:
You will not be able to change Max DOP in SQL DB and it is equivalent to 0 (for SQL DB v12) which is a different behavior in SQL DB V11 (which is 1) always. If you see your query plans impacting the performance and need to reset it to 1, please open a support ticket to MSFT and this will be fixed.
Post a Comment for "Modifying Max Degree Of Parallelism To 1 For Azure Sql Server"