Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HELLO ALL,
I AM BUILDING a windows application that connected to sql database to store and update data.
the application will be installed on 40 user's device,i am gonna to install the sql server in one device to allow other device to connect to this device.
my question is: which edition of sql server i need is the express edition (free) can support this scenario?

What I have tried:

i search on internet about all editions, no one tells how many devices the epress support
Posted
Updated 30-Mar-18 14:22pm

Express edition can support multiple client connections just like standard version. The limitations are mainly the database size maximum, ability to use processor cores, maximum memory size etc.

Have a look at SQL Server 2017—Editions | Microsoft[^]
 
Share this answer
 
The problem isn't so much the limitations of the SQL Server edition, but the edition of Windows you're going to install the SQL Server on.

You can not install SQL Server on Home editions of Windows.

Workstation editions of Windows (non-server) also have inbound connection limits. On Windows 10 Pro, it's 20 machines, and a single machine can have multiple connections to the server going to different services, not just SQL Server, so you're not going to get 20 different machines connected at the same time.

If you're going to have 40 clients connecting to the database, the SQL Server better be installed on a Server edition of Windows.
 
Share this answer
 
Comments
PIEBALDconsult 31-Mar-18 0:09am    
Ah, but put a Web Service between the client and database, and then what?
Dave Kreskowiak 31-Mar-18 10:24am    
Inbound connection limit still applies to Windows, just not to SQL Server. Granted, with 40 clients (and only 5 using it at a time), it's very unlikely the limit will be hit considering the short time an HTTP request is actually connected.

But, if an app is actually useful, how often does an app stay limited to X number of machines?
[no name] 31-Mar-18 7:12am    
You wrote "You can not install SQL Server on Home editions of Windows" but MS docs say somethinh different:


Hardware and Software Requirements for Installing SQL Server 2016 | Microsoft Docs[^]
Dave Kreskowiak 31-Mar-18 10:18am    
That's new. Previous versions, talking Standard here, couldn't be installed on Home editions.
[no name] 31-Mar-18 10:23am    
Just read the link again and it looks like it has changed with W10. So < W10 your answer is very right

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900