If you see the message “Database is in compatibility range and upgrade is recommended” in the central administration (Upgrade and migration part) then you might have done an update of the SharePoint version. Often it is the BDC Database. See also this post.
Run the powershellscript:
[sourcecode language=”csharp”]
(Get-SPDatabase | ?{$_.type -eq “Microsoft.SharePoint.BusinessData.SharedService.BdcServiceDatabase”}).Provision()
[/sourcecode]
Hope it helps you.
The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.
Leave a Reply