可以将多少个节点连接到SQL Server 2014 Express?

时间:2017-11-30 11:19:21

标签: sql-server sql-server-2014-express

我的Windows应用程序的后端是安装在Windows 7 Pro上的SQL Server 2014 Express,我已将其配置为通过Internet与SQL Server身份验证连接,仅限一个用户public ActionResult Import(HttpPostedFileBase file) { //HttpPostedFileBase directly is of no use so commented your code //var excel = new ExcelQueryFactory(file); //using linq to excel var stream = file.InputStream; if (stream.Length != 0) { //handle the stream here using (XLWorkbook excelWorkbook = new XLWorkbook(stream)) { var name = excelWorkbook.Worksheet(1).Name; //do more things whatever you like as you now have a handle to the entire workbook. var firstRow = excelWorkbook.Worksheet(1).Row(1); } } } 。从我可以连接到SQL Server 2014 Express的计算机数量?有没有限制?

1 个答案:

答案 0 :(得分:0)

从这里开始:Maximum Capacity Specifications for SQL Server

  

用户连接32,767

您也可以使用代码确定它:

select @@MAX_CONNECTIONS;

但是您可能遇到的问题不是用户连接的限制,而是服务器内存的1Gb限制,应该在这些32,767个连接之间进行划分。