Here is the two-quick script which helps to resolve these issues:
Change MAXDOP at Server Level
EXEC sys.sp_configure N'max degree of parallelism', N'1'GORECONFIGURE WITH OVERRIDE
GO
Run Query with all the CPU (using parallelism)
USE AdventureWorks
GOSELECT *FROM Sales.SalesOrderDetailORDER BY ProductIDOPTION (MAXDOP 0)GO
http://blog.idera.com/sql-server/performance-and-monitoring/cxpacket-what/
0 comments:
Post a Comment