简体   繁体   English

我可以从SQL Server 2016 13.0.5026.0(X64)标准版升级到Microsoft SQL Server 2014-12.0.4100.1(X64)企业版吗?

[英]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?

I need to upgrade the SQL server installed on my server from SQL Server 2016 13.0.5026.0 (X64) Standard Edition to Microsoft SQL Server 2014 - 12.0.4100.1 (X64) Enterprise Edition but I have got the below message the specified edition upgrade from source enterprise edition to target standard edition is not supported. 我需要将服务器上安装的SQL Server从SQL Server 2016 13.0.5026.0(X64)Standard Edition升级 Microsoft SQL Server 2014-12.0.4100.1(X64)Enterprise Edition,但我收到以下消息,表明从源升级指定版本不支持企业版到目标标准版。 for information about supported upgrade paths, see the sql server 2016 version and edition upgrade in books online. 有关支持的升级路径的信息,请参阅联机丛书中的sql server 2016版本和版本升级。

In Production environment, the best way to deploy farm solution is using PowerShell command, VS usually used in test server for debug, in Production server,I would not suggest to install Visual Studio. 在生产环境中,部署服务器场解决方案的最佳方法是使用PowerShell命令,通常在测试服务器中使用VS进行调试,在生产服务器中,我不建议安装Visual Studio。 And SharePoint Designer, usually is to develop custom master page and Client Side code for example, CSS, JavaScript, for C# solution, like web part, it is need to host with feature, and we can use PowerShell command below to deploy: 而SharePoint Designer通常是为C#解决方案开发自定义母版页和客户端代码,例如CSS,JavaScript,例如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

Reference here: 参考在这里:

Add, Deploy, and Activate the SharePoint Solution Files with PowerShell 使用PowerShell添加,部署和激活SharePoint解决方案文件

Ki Kerlos, Ki Kerlos,

Based on a few things you have said it sounds like you have edited an already existing solution. 根据您所说的几句话,听起来您已经编辑了一个已经存在的解决方案。 Would this be correct? 这是正确的吗?

If so you need to think about what you are deploying. 如果是这样,则需要考虑要部署的内容。 If it is only code that you have updated (no new features, no new artefacts like pages content type or fields etc) you should be able to grab the WSP from your test env and run powershell command Update-SPSolution with the additional -GACDeployment and this should deploy your code. 如果仅更新了代码(没有新功能,没有页面内容类型或字段等新假象),则应该能够从测试环境中获取WSP并运行带有附加-GACDeployment和的powershell命令Update-SPSolution。这应该部署您的代码。

If you are adding additional artefacts to an already existing feature you will need to do a feature upgrade Chris o'Brian feature upgrades . 如果要向现有功能添加其他人工制品,则需要进行功能升级Chris o'Brian功能升级

Cheers 干杯

Truez 特鲁兹

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如果我在我的应用程序中嵌入SQL Server Compact Edition 4.0 x64,我可以在x86客户端上部署应用程序吗? - If I embed SQL Server Compact Edition 4.0 x64 in my application, can I deploy app on x86 clients? 网络实例名称上的x64 SQL Server检测 - x64 SQL Server Detection On Network Instance Names 是否可以查询远程服务器的链接服务器? /从SQL Server x64访问FoxPro数据 - Is it possible to query a linked server of a remote server? / Acces FoxPro data from SQL Server x64 SQL Server 2008中的BIDS,标准版和企业版 - BIDS, Standard and Enterprise Edition in SQL Server 2008 在Windows 7 x64下访问服务器 - Accessing Server under Windows 7 x64 在Windows Server 2008(x64)上安装SQL Server 2000时出错 - Error installing SQL Server 2000 on Windows Server 2008 (x64) 将Fox Pro DBF文件迁移到SQL Server 2012 x64 - Migrate Fox Pro DBF files to SQL Server 2012 x64 SQL Server的2014/2016开发人员版(向后兼容) - 2014/2016 Developer Edition of SQL Server (Backward Compatibility) 具有PowerBI和Power View的SQL Server 2014 Standard Edition - SQL Server 2014 Standard Edition with PowerBI and Power View SQL Server Standard Edition 2014中的群集列存储索引? - Clustered Columnstore Index in SQL Server Standard Edition 2014?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM