Maximum Capacity Specifications for SQL Server 2008 Express - User connections
-
Tuesday, January 06, 2009 11:07 AMI'm looking for this specification, but not find. Can you tell me?
The maximum number of connections supported by SQL Server 2008 Express!
thanks
All Replies
-
Tuesday, January 06, 2009 1:13 PM
Hi
Execute the following T-SQL to know it.
SELECT @@MAX_CONNECTIONS
The actual number of user connections allowed also depends on the version of SQL Server you are using and the limits of your application or applications and hardware. SQL Server allows a maximum of 32,767 user connections.
Because user connections is a dynamic (self-configuring) option, SQL Server adjusts the maximum number of user connections automatically as needed, up to the maximum value allowable. For example, if only 10 users are logged in, 10 user connection objects are allocated. In most cases, you need not change the value for this option. Use sp_configure to determine the maximum number of user connections that your system allows.
Refer http://msdn.microsoft.com/en-us/library/ms143432.aspx for more information.
http://msdn.microsoft.com/en-us/library/ms187030.aspx for setting the user connection
Thanks
Sreekar- Marked As Answer by Jens K. Suessmeyer -Microsoft Employee, Moderator Tuesday, January 06, 2009 6:12 PM
-
Tuesday, January 06, 2009 4:16 PMok, but this specifications in your references, they are to the version Express too?
thanks -
Tuesday, January 06, 2009 6:01 PMModerator
Yep, no additional restrictions except that one mentioned on the comparison site here:
http://www.microsoft.com/sqlserver/2008/en/us/editions.aspx
-Jens K. Suessmeyer- Marked As Answer by Jens K. Suessmeyer -Microsoft Employee, Moderator Tuesday, January 06, 2009 6:12 PM
-
Tuesday, January 06, 2009 6:08 PM
thanks for the help!

