PRB: Why SQL Server Error Log Contains "Open Objects" WarningsID: Q89392
|
After SQL Server is run for a period of time, the error log may contain
many lines (possibly thousands) of the following warning:
Warning: OPEN OBJECTS parameter may be too low;
attempt was made to free up descriptors in localdes().
Run sp_configure to increase parameter value.
This warning message is generated each time SQL Server needs to search for a free descriptor for an object. It is important to note that this is only a warning message, not an error. This warning message was not raised in versions of SQL Server prior to 4.2 but was included beginning with 4.2 to warn the System Administrator that the value for "open objects" should be increased to achieve better performance.
To eliminate this warning from being raised, increase the value of the
"open objects" parameter. To do this, execute the sp_configure system
procedure with the following syntax:
exec sp_configure "open objects", <new value>
Additional query words: sp_configure errorlog
Keywords : kbother SSrvErr_Log SSrvServer
Version : 4.2
Platform : OS/2
Issue type :
Last Reviewed: March 13, 1999