简体   繁体   English

如何使用 Microsoft SQL Server 2016 网络版的多个实例

[英]How to use multiple instances of Microsoft SQL Server 2016 web edition

I am planning to get SQL Server web edition licence from my server provider我打算从我的服务器提供商那里获得 SQL Server 网络版许可证

https://msdn.microsoft.com/en-us/library/cc645993(v=sql.130).aspx https://msdn.microsoft.com/en-us/library/cc645993(v=sql.130).aspx

SQL web edition has 64 gb ram and 16 core limitation SQL 网络版有 64 GB 内存和 16 核限制

I will run 3 websites on this server and server has 24 cores and 128 gb ram currently我将在这台服务器上运行 3 个网站,服务器目前有 24 个内核和 128 GB 内存

So it is logical for me if I run 2 instances SQL Server and I can utilize all system resources?因此,如果我运行 2 个 SQL Server 实例并且我可以利用所有系统资源,这对我来说是合乎逻辑的吗?

However I have never used two instances of SQL Server before.但是我以前从未使用过两个 SQL Server 实例。

So how can I install multiple instances of SQL Server 2016 web edition and use them?那么如何安装多个 SQL Server 2016 web 版实例并使用它们呢?

This is my static connection string currently这是我目前的静态连接字符串

public static string srConnectionString = "server=localhost;database=myDB;uid=sa;pwd=myPW;";

I'd suggest to go with Standard edition.我建议去Standard版。 It might be more expensive (about $45K), but you can use all of your 24 cores and 128 gb ram by just one instance.它可能更贵(大约 45,000 美元),但您可以通过一个实例使用所有 24 个内核和 128 GB 内存。
You do not have to have multi instances, just have everything in different databases.您不必拥有多个实例,只需将所有内容放在不同的数据库中即可。 If you are concerned about security, then you can make databases invisible for another user.如果您担心安全性,那么您可以将数据库设置为对其他用户不可见。
In case you want an ability to restart services separately, then it is better to have 2-3 virtual boxes, but in this case you'd have to pay individually for each box.如果您希望能够单独重新启动服务,那么最好拥有 2-3 个虚拟盒子,但在这种情况下,您必须为每个盒子单独付费。

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

相关问题 SQL Server 2016,如何在数据库的多个单词搜索中使用CONTAINS()? - SQL Server 2016, How to use CONTAINS() with multiple word search of database? SQL Server 2016 Standard Edition Linux安装 - SQL server 2016 standard edition linux installation SQL Server 2016 Express版和开发人员版在同一台计算机上 - SQL Server 2016 Express edition and developer edition on same machine 我可以从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? 如何选择Microsoft SQL Server Edition 2012作为开发人员? - How to Choose a Microsoft SQL Server Edition 2012 as a Developer? SQL Server Web Edition SSIS - SQL Server Web Edition SSIS SQL Server 2008 Web Edition - SQL Server 2008 Web Edition 如何使用 Microsoft SQL Server 2016 生成分层 JSON 数据? - How to generate hierarchical JSON data with Microsoft SQL Server 2016? PowerBI是否随SQL Server 2016(Standard OR Enterprise)版一起提供 - Is PowerBI available with SQL Server 2016(Standard OR Enterprise) edition SQL Server 2016 Standard Edition SP1是否支持交换机分区? - Is SQL Server 2016 Standard Edition SP1 support switch partition?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM