Question

If I change "Max Pool Size" in my connection string, do I need to restart SQL Server for the change to take effect?

Était-ce utile?

La solution

When a connection is first opened, a connection pool is created based on an exact matching algorithm that associates the pool with the connection string in the connection. Each connection pool is associated with a distinct connection string. When a new connection is opened, if the connection string is not an exact match to an existing pool, a new pool is created.

http://msdn.microsoft.com/en-us/library/8xx3tyca(v=vs.110).aspx

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top