PKM uses a different connection pool. It won't exhaust your web application
connection pool.

Signature
Hilary Cotter
Director of Text Mining and Database Strategy
RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
This posting is my own and doesn't necessarily represent RelevantNoise's
positions, strategies or opinions.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
Yeah, i understand what you just said. I'm not accusing the fulltext process
of tapping into the web app's connection. As far as i know, thats just not
possible. The problem im having is that the full text indexing process eats
up all available connections, not allowing anything else to connect.
Here is the scenario:
1. begin fulltext process: exec sp_fulltext_catalog N'Category', N'start_full'
2. in query analyzer execute: sp_who2 (view the fulltext process using 50+
connections)
3. start the webapp: hit the website and trigger a sql connection.
result: The web app can't connect. why? because the fulltext process used up
all of the connections! The web application then times out and throws the
exception.
> PKM uses a different connection pool. It won't exhaust your web application
> connection pool.
[quoted text clipped - 35 lines]
> >> > this many connections is unacceptable. is this normal behavior for sql
> >> > server?
Simon Sabin - 26 Apr 2006 12:57 GMT
Hello Karel,
It suggest that the server is hitting a limit of some sort either, network,
processor, memory or disk. It won't be connections because SQL can have thousands
of connections.
What is the spec of your box?
Do you have the full text indexes on a seperate drive.
> Yeah, i understand what you just said. I'm not accusing the fulltext
> process of tapping into the web app's connection. As far as i know,
[quoted text clipped - 79 lines]
>>>>> this many connections is unacceptable. is this normal behavior for
>>>>> sql server?