Excel Services is not currently able to load workbooks
If you find that Excel Services is not able to load workbooks in your SharePoint site then this may be due to insufficient permissions. You may also see the following error in your logs: System.Data.SqlClient.SqlException: Cannot open database “SP2013_Content_Portal” required…
Only allow sites to be created with SharePoint 2013 compatibility level
If you have a requirement to only allow sites within a web application to be created with a compatibility level of SharePoint 2013 then you can configure this using only a few PowerShell commands: $wa = Get-SPWebApplication http://portal.webbworld.local $wa.CompatibilityRange =…
Moving a site collection between content databases (SharePoint 2013 using PowerShell
I have created a new site collection within a SharePoint 2013 web application and want it to use a new content database. After creating the new content database using the New-SPContentDatabase cmdlet I used the Move-SPSite cmdlet: Move-SPSite <URL> –DestinationDatabase…