我需要升级我服务器上安装的SQL服务器 SQL Server 2016 13.0.5026.0(X64)标准版到 Microsoft SQL Server 2014 - 12.0.4100.1(X64)企业版 但我收到以下消息 不支持从源企业版到目标标准版的指定版本升级。有关支持的升级路径的信息,请参阅联机丛书中的sql server 2016版本和版本升级。
答案 0 :(得分:2)
在生产环境中,部署服务器场解决方案的最佳方法是使用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
答案 1 :(得分:1)
Ki Kerlos,
基于您所说的一些事情,听起来您已经编辑了现有的解决方案。这是正确的吗?
如果是这样,您需要考虑部署的内容。如果它只是您更新的代码(没有新功能,没有新的工件,如页面内容类型或字段等),您应该能够从测试环境中获取WSP并使用额外的-GACDeployment运行powershell命令Update-SPSolution并且这应该部署你的代码。
如果要在现有功能中添加其他人工制品,则需要进行功能升级Chris o'Brian feature upgrades。
干杯
Truez