【问题标题】:Can I upgrade from SQL Server 2016 13.0.5026.0 (X64) Standard Edition to Microsoft SQL Server 2014 - 12.0.4100.1 (X64) Enterprise Edition?我可以从 SQL Server 2016 13.0.5026.0 (X64) 标准版升级到 Microsoft SQL Server 2014 - 12.0.4100.1 (X64) 企业版吗?
【发布时间】:2019-05-18 20:33:32
【问题描述】:
我需要将安装在我服务器上的 SQL 服务器从
SQL Server 2016 13.0.5026.0 (X64) Standard Edition 到 Microsoft SQL Server 2014 - 12.0.4100.1 (X64) Enterprise Edition
但我收到以下消息
不支持从源企业版到目标标准版的指定版本升级。有关支持的升级路径的信息,请参阅联机书籍中的 sql server 2016 版本和版本升级。
【问题讨论】:
标签:
sql
sql-server
upgrade
【解决方案1】:
在生产环境中,部署农场解决方案的最佳方式是使用 PowerShell 命令,VS 通常用于测试服务器进行调试,在生产服务器中,我不建议安装 Visual Studio。而 SharePoint Designer,通常是开发自定义母版页和客户端代码,例如 CSS、JavaScript,用于 C# 解决方案,如 Web 部件,需要托管功能,我们可以使用下面的 PowerShell 命令进行部署:
Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.SettingsList.wsp"
Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\AgilePoint.SharePoint.Dashboard.wsp"
Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.WFIntegration.wsp"
Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.ListForm.wsp"
Install-SPSolution -WebApplication "[Site Collection URL]" -GACDeployment
-FullTrustBinDeployment -Identity Ascentn.SharePoint.SettingsList.wsp
-CompatibilityLevel All
Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment
-FullTrustBinDeployment -Identity AgilePoint.SharePoint.Dashboard.wsp
-CompatibilityLevel All
Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment
-FullTrustBinDeployment -Identity Ascentn.SharePoint.WFIntegration.wsp
-CompatibilityLevel All
Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment
-FullTrustBinDeployment -Identity Ascentn.SharePoint.ListForm.wsp
-CompatibilityLevel All
Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointSettingsListFeature
Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointDashboard
Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointWFIntegration
Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointListForm
参考这里:
Add, Deploy, and Activate the SharePoint Solution Files with PowerShell
【解决方案2】:
基克洛斯,
根据您所说的几件事,听起来您编辑了一个已经存在的解决方案。这是正确的吗?
如果是这样,您需要考虑要部署什么。如果只是您更新的代码(没有新功能,没有新的人工制品,如页面内容类型或字段等),您应该能够从您的测试环境中获取 WSP 并运行带有附加 -GACDeployment 的 powershell 命令 Update-SPSolution 和这应该部署您的代码。
如果您要向现有功能添加额外的人工制品,您将需要进行功能升级Chris o'Brian feature upgrades。
干杯
真人