USE [master]
GO
EXEC sp_configure 'show advanced options', 1 ;
GO
RECONFIGURE
GO
EXEC sp_configure 'cost threshold for parallelism'
USE [master]
GO
EXEC sp_configure 'show advanced options', 1 ;
GO
RECONFIGURE
GO
EXEC sp_configure 'cost threshold for parallelism', 50
GO
RECONFIGURE
GO
USE [master]
GO
EXEC sp_configure 'show advanced options', 1 ;
GO
RECONFIGURE
GO
EXEC sp_configure 'max_degree_of_parallelism'
AWS recommend (1)...
| Logical |NUMA Nodes | Processors | MAXDOP-----------+-------------+----------------------Single | =< 8 | 4, 2, or no of cores (for 1 or 2 cores)Single | > 8 | 8, 4, or 2Multiple | =< 16 | 8, 4, or 2Multiple | > 16 | 16, 8, 4, or 2USE mydatabase ;
GO
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO
EXEC sp_configure 'max degree of parallelism', 8;
GO
RECONFIGURE WITH OVERRIDE;
GO
Where 8 is the new valueUnlimited (default)...
EXEC sp_configure 'max degree of parallelism',0