This should be fairly evident, but the script should be just as below as not everyone will have the AdventureWorks DB present:USE masterGOEXEC sp_configure 'show advanced options', 1;GORECONFIGURE WITH OVERRIDE;GOEXEC sp_configure 'max degree of parallelism', 8;GORECONFIGURE WITH OVERRIDE;GOYou can verify the setting by simple running:EXEC sp_configure 'max degree of parallelism'
↧