Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the number of maximum concurrent connections for Sql CE 3.5?

as google does not deliver what i want to know, i try to ask stackoverflow :) what is the number of max concurrent connections to a sql ce 3.5 database? thanks j.

like image 923
Joachim Kerschbaumer Avatar asked Oct 27 '08 16:10

Joachim Kerschbaumer


People also ask

How many concurrent connections can MySQL handle?

Simultaneous MySQL connection limits Each database user is limited to 38 simultaneous MySQL connections. This limitation helps to prevent overloading the MySQL server to the detriment of other sites hosted on the server.

How do I find the maximum number of connections in SQL Server?

The maximum number of connections across SQL Server versions and editions is 32,767. You can determine how many connections SQL Server currently has by looking at: SELECT ConnectionStatus = CASE WHEN dec. most_recent_sql_handle = 0x0 THEN 'Unused' ELSE 'Used' END , CASE WHEN des.

What is maximum concurrent connections in SQL Server?

SQL Server allows a maximum of 32,767 user connections. Because user connections is a dynamic (self-configuring) option, SQL Server adjust the maximum number of user connections automatically as needed, up to the maximum value allowable.

What is a concurrent connection limit?

Concurrent Connection: The maximum amount of simultaneous connections your server can handle.


2 Answers

SQL Server Compact 3.5 supports multiple connections up to the 256 connection limit.(source)

like image 119
saku Avatar answered Sep 28 '22 07:09

saku


I believe the information you are looking for is the SQL Server Edition Comparison.

For standard Editions - Compare Features

For Compact Edition - Compare Features

Edit

Sorry, this Word Document is most likely what you need.

Edit again

The answer is 256 concurrent connections for Compact, unlimited for express. See table 1 in the linked word doc.

like image 42
Mitchel Sellers Avatar answered Sep 28 '22 07:09

Mitchel Sellers