March 31, 2010 at 3:59 pm
Hi,
We have SQL Server 2005 EE 64 bit with SP3 and have MOSS 2007 databases in it. I would like to know Number of concurrent requests to SQL Server 2005 instance.
Where can I find that information?
Thanks
March 31, 2010 at 4:11 pm
its in BOL somewhere.
From memory its 2 to the power of 15 or 32,768, i.e the value is held in a two byte field
Will that be enough connections for you? 🙂
---------------------------------------------------------------------
March 31, 2010 at 10:39 pm
You can have up to 32768 connections to the instance. That is per instance assuming you have adequate memory to support all of the connections. Each connection will require a nominal amount of resources.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
April 1, 2010 at 8:40 am
I am not sure, but I believe the OP meant to know the number of current requests on a SQL instance.
To obtain the number of current connected sessions you could run
SELECT
COUNT(*)
FROM
sys.sysprocesses
WHERE
SPID >50
Additionally you could refine this by adding/grouping based on different criteria of the fields of that view.
April 1, 2010 at 9:32 am
Richard M. (4/1/2010)
I am not sure, but I believe the OP meant to know the number of current requests on a SQL instance.To obtain the number of current connected sessions you could run
SELECT
COUNT(*)
FROM
sys.sysprocesses
WHERE
SPID >50
Additionally you could refine this by adding/grouping based on different criteria of the fields of that view.
That is quite possible what he meant after having re-read it. Best to cover the bases.
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply