With SQL Express (and MSDE before that) databases Autoclose is enabled by default. Every re-connect is logged as 'Information' in server EventLog. In a small local network I see that while client application is executing there is a re-connect every 5 seconds. In a day this could result in hundreds/thousands of events logged and every day there is a server error about EventLog being full. With stored procedure sp_dboption Autoclose can be disabled. Does this cause other problems? Are there other options? Like:
- Can only 'Information' logs be turned off from SQL Server? (I didn't find it with sp_configure)
- Can Autoclose timeout be configured?
- Is the problem with the implementation of that application (not mine
) or SQL Server?
Input appreciated.
- Can only 'Information' logs be turned off from SQL Server? (I didn't find it with sp_configure)
- Can Autoclose timeout be configured?
- Is the problem with the implementation of that application (not mine

Input appreciated.