Connection pooling

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have one SQL account that is used by 100 simultaneous users at my website.
Let's say one user starts a long running query. I get another sql request
before the first sql statement finishes. Does that mean I have to open or use
another connection? Does this mean that the web server needs multiple SQL
user licenses?
 
When you create a web page, each user gets their own instance. If a
currently running instance is using the connection, another is created
automatically. I have no idea how you've licensed your SQL Server, so I
would read the EULA to see how web sites are handled.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com/blog/billva
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Back
Top