Specifying Max Degree of Parallelism in SQL Server for a Query

By:   |   Comments   |   Related: > Query Optimization


Problem

The Max Degree of Parallelism or MAXDOP is a configuration indicating how the SQL Server optimizer will use the CPUs.  This is a server wide configuration that by default uses all of the CPUs to have the available portions of the query executed in parallel.  MAXDOP is very beneficial in a number of circumstances, but what if you have a reporting like query that runs in an OLTP system that monopolizes much of the CPU and adversely affects typical OLTP transactions.  How can you scale back the CPU usage just for this query?

Solution

Luckily SQL Server 2000 and 2005 provide the OPTION clause which among other configurations, offers the opportunity to specify the MAXDOP for the specific query.  This means that a fixed number of CPUs is used for the specific query overriding the server configuration. 

If you leave MAXDOP enabled, which is the default, and need to disable it on particular queries, leverage the OPTION code to achieve non parallel processing.  This may benefit the situation where OLTP processing is impacted by reporting or batch processing.  If you have already disabled MAXDOP, then the OPTION clause can enhance particular queries. 

How do I configure the Max Degree of Parallelism at the server level?

SQL Server 2000 SQL Server 2005
  1. Open SQL Server 2000 Enterprise Manager
  2. Once the tool loads, navigate to the intended server and right click on server name
  3. Select the 'Properties' option
  4. Select the 'Processor' tab
  5. Review the configurations for the 'Parallelism' section
  1. Open SQL Server 2005 Management Studio
  2. Once the tool loads, navigate to the intended server in the Object Explorer and right click on server name
  3. Select the 'Properties' option
  4. Select the 'Advanced' page from the left navigation
  5. Review the configurations for the 'Parallelism' section
How to configure the number of processors available for parallel queries (Enterprise Manager) How to: Configure the Number of Processors Available for Parallel Queries (SQL Server Management Studio)

 

How can I specify the Max Degree of Parallelism at the query level?

SQL Server 2000 SQL Server 2005
SELECT *
FROM Pubs.dbo.Authors
OPTION (MAXDOP 1)
 
SELECT *
FROM Pubs.dbo.Authors
OPTION (MAXDOP 1) ;
 
OPTION Clause Query Hint (Transact-SQL)

 

Next Steps


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Jeremy Kadlec Jeremy Kadlec is a Co-Founder, Editor and Author at MSSQLTips.com with more than 300 contributions. He is also the CTO @ Edgewood Solutions and a six-time SQL Server MVP. Jeremy brings 20+ years of SQL Server DBA and Developer experience to the community after earning a bachelor's degree from SSU and master's from UMBC.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips



Comments For This Article

















get free sql tips
agree to terms