Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Diya1225
Starting Member
1 Post |
Posted - 2011-04-15 : 14:33:08
|
Hi,Please could someone help me in understanding the concept of MAXDOPin Sql Server 2008.ThanksDiya |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
Jahanzaib
Posting Yak Master
115 Posts |
Posted - 2011-04-15 : 15:35:51
|
MAXDOP is Maximum Degree of Parallelism when you use in the end of query a query hintOPTION(MAXDOP 2)then this mean optimizer process this query on 2 Processors forcefullyYou can define this option at the Server level also then every query will use the defined processorshttp://aureus-salah.com/2011/02/25/sql-server-query-hints/http://aureus-salah.com/2010/08/09/sql-server-cpu-hyperthreading-max-workers/Regards,Syed Jahanzaib Bin HassanMCTS,MCITP,OCA,OCP,OCE,SCJP,IBMCDBA |
 |
|
|
|
|