domingo, 12 de agosto de 2012

SETUP SharePoint 13 Preview – “This SQL Server instance does not have the required max degree of parallelism”

Para aquellas personas que están ya haciendo pruebas con el nuevo SharePoint y SQL 2012; si les llega a suceder algo como este error al correr el products configuration wizard:

“This SQL Server instance does not have the required max degree of parallelism” 

 La solución a dicho problema es la siguiente:
  •  Correr el SQL Server Management Studio y correr el siguiente comando:  
sp_configure 'show advanced options', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO
sp_configure 'max degree of parallelism', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO

  • Borrar la base de datos SharePoint Config que parcialmente se configuró Volver a correr el 
  • Products Configuration Wizard.  

Pueden leer más acerca de "max degree of parallelism" acá