There is an error "failed to create configuration database" while installing sharepoint 2016 with an addition message "sql server instance does not have the required "max degree of parallelism" setting of 1".
What is Max Degree of Parallelism ?
When an instance of SQL Server runs on a computer that has more than one microprocessor or CPU, it detects the best degree of parallelism, that is, the number of processors employed to run a single statement, for each parallel plan execution. You can use the max degree of parallelism option to limit the number of processors to use in parallel plan execution. SQL Server considers parallel execution plans for queries, index data definition language (DDL) operations, and static and keyset-driven cursor population.
Read this for more details
http://technet.microsoft.com/en-us/library/ms189094.aspx
How to fix it ?
- Open Microsoft SQL Server Management Studio
- Login with sysadmin user
- Right Click on instance name and select properties >> Advanced
- Change Max Degree of Parallelism to 1
- Restart the SQL Service
Â
Related
Categories: sharepoint prerequisites
Tags: failed to create configuration database, failed to create the configuration database sharepoint 2016, InstallationConfiguration, max degree of parallelism, SharePoint 2016, sharepoint 2016 prerequisite installation
You must be logged in to post a comment.