Hi all,
A few time ago, I went trought this message for the BCS Database on SharePoint 2013:
BCS Database is in compatibility range and upgrade is recommended
To solve this issue, I've executed this PowerShell commands:
This solved my particular issue.
If you have the same type of message for other databases, please proceed by the same way, by replacing the name of the DB by the known name when doing a Get-Member
Add-PSSnapin Microsoft.SharePoint.PowerShell
A few time ago, I went trought this message for the BCS Database on SharePoint 2013:
BCS Database is in compatibility range and upgrade is recommended
To solve this issue, I've executed this PowerShell commands:
This solved my particular issue.
If you have the same type of message for other databases, please proceed by the same way, by replacing the name of the DB by the known name when doing a Get-Member
Add-PSSnapin Microsoft.SharePoint.PowerShell
Get-SPDatabase | FT -auto name,type
(Get-SPDatabase | ?{$_.type -eq "Microsoft.SharePoint.BusinessData.SharedService.BdcServiceDatabase"}).Provision()
Voilà,
That’s all Folks !!!