Quantcast
Channel: Darren's Tech Blog » SharePoint
Viewing all articles
Browse latest Browse all 10

SharePoint 2013 Preview SQL error

$
0
0

 

Now this is were I ran into an issue.  The configuration process began and it failed at step 3

 

image thumb78 Installing SharePoint 2013 Preview on Windows 2012 Server with SQL 2012 Part 2 sharepoint 2013

 

The error stated that the SQL Server instance does not have the required ”max degree of parrallelism” setting of 1.  Here I was scratching my head until Google came to the rescue.  I came across the following MSDN article which gave me the command I needed to resolve this.  http://msdn.microsoft.com/en-us/library/ms181007(v=sql.105).aspx

 

We need to run the following script on our SQL 2012 server.

 

sp_configure 'show advanced options', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO
sp_configure 'max degree of parallelism', 1;
GO
RECONFIGURE WITH OVERRIDE;
GO

 

Navigate to your SQL 2012 server and launch SQL Management Studio. Open a new SQL Query Window and paste the above.  That should do it!

 

image thumb79 Installing SharePoint 2013 Preview on Windows 2012 Server with SQL 2012 Part 2 sharepoint 2013

 

You may have noticed in SQL under databases that the SharePoint_Config database had been created.  We need to delete the SharePoint_Config DB otherwise we would have to specify a new name when re-running the SharePoint Configuration Wizard.

 

After deleting the SharePoint_Config DB, re-run the SharePoint configuration Wizard.

 

image thumb80 Installing SharePoint 2013 Preview on Windows 2012 Server with SQL 2012 Part 2 sharepoint 2013

 

This time is should go right through to the end without any errors and you will finally be greeted with the below successful screen.

 

image thumb81 Installing SharePoint 2013 Preview on Windows 2012 Server with SQL 2012 Part 2 sharepoint 2013

 

Click Finish


Viewing all articles
Browse latest Browse all 10

Trending Articles