system
4
Should it be of any interest or help to anyone else, I got these log entries explained by avast tech support as follows…
refering to this part of the log:
2007-06-04 22:00:40.21 spid11 This SQL Server has been optimized for
8 concurrent queries. This limit has been exceeded by 5 queries and performance may be adversely affected.
I’d say you can safely ignore these. The thing is, MSDE (as opposed to the full SQL Server engine) is intentionally crippled so that it limits the number of concurrent connections allowed to the database. In other words, if the number of connections to the SQL engine exceeds a fixed threashold (which is, I believe, 5 [even though the log entry suggests it’s actually 8]), other attempts to connect to the database wait (they don’t fail, though). So, this slightly affects the performance of the DB engine but doesn’t really cause it to malfunction in any way.
This is why we generally don’t recommend use of MSDE if ADNM is servicing more than a couple of hundreds of clients. Our load tests showed that this is the number of clients with which this limitation of MSDE starts to cause noticable problems (i.e. the client connection timeouts start occuring).