Wednesday, May 4, 2016

Database is in compatibility range and upgrade is recommended for Service Application or Content Databases Fixes

clip_image002
1) To correct the content database issue, just run the command as below from SharePoint PowerShell as Administrator:
$db = Get-SpDatabase
Upgrade-SPContentDatabase $db
clip_image004
After it has done, check the status again on Central Administration;
1) To correct the upgrade necessary on BDC database, below from SharePoint PowerShell as Administrator:
$db = Get-SpDatabase
$db.Type
$db.NeedsUpgrade
(Get-SPDatabase | ?{$_.type -eq “Microsoft.SharePoint.BusinessData.SharedService.BdcServiceDatabase”}).Provision()
clip_image006
After it has done, check the status again on Central Administration;
clip_image008

No comments: