Groups | Blog | Home
all groups > sql server (alternate) > july 2004 >

sql server (alternate) : Session memory usage


fredrik_bertilsson NO[at]SPAM passagen.se
7/28/2004 3:03:09 AM
Hi,
does someone know how much memory a user session takes on a SQLServer
database server? How many concurrent user sessions can a normal server
(4 GB primary memory) handle, before connection pooling is needed?

sql NO[at]SPAM hayes.ch
7/28/2004 8:06:58 AM
[quoted text, click to view]

24KB by default - see "Memory Used by SQL Server Objects
Specifications" in Books Online. But this isn't usually an issue -
what's more important is the cache memory required to support the
queries the user is executing. As for concurrent users, if an
application is well designed to avoid locking then it should scale
well, but a badly designed one could have problems with just a handful
of users.

Greg D. Moore (Strider)
7/29/2004 12:11:02 AM

[quoted text, click to view]

Also, it's often the time to build up and tear down the connection that's
time consuming, hence another reason (and probably more important) to use
connection pooling.


[quoted text, click to view]

AddThis Social Bookmark Button