SharePoint 2016: 数据库正在兼容性范围内运行,建议进行升级

问题描述:

SharePoint 运行状况分析器提示:

中文:数据库正在兼容性范围内运行,建议进行升级。

英文:Database running in compatibility range and upgrade recommended

此时去管理中心---升级和迁移---查看数据库状态:

注意, SharePoint_AdminContent 管理中心内容数据库

 

解决办法

方法一. Run the following in the SharePoint 2016 Management Shell to upgrade the compoments in the Central Administration database(针对内容类型数据库):

Get-SPWebApplication <Central Administration URL> | Get-SPContentDatabase | Upgrade-SPContentDatabase

 

方法二. Run the SharePoint 2016 Products Configuration Wizard from the command line(针对非内容类型数据库):

PSConfig.exe -cmd upgrade -inplace b2b -wait -force -cmd applicationcontent -install -cmd installfeatures -cmd secureresources

 

 

参考:

https://support.microsoft.com/en-us/help/3157397/-upgrade-available-status-in-new-sharepoint-server-2016-farm

https://blog.devoworx.net/2015/10/20/database-running-in-compatibility-range-and-upgrade-recommended/

原文地址:https://www.cnblogs.com/sygwin/p/8434717.html