February 6, 2006 at 8:59 am
February 6, 2006 at 10:26 am
Any errors in the eventviewer/sql server logs?
Possible reasons for memory leaks
Cursors aren't properly released
Any calls with sp_OACreate not properly released.
Lingering transactions
February 6, 2006 at 12:24 pm
Thanks, I will look into these. Keep in mind, to fix the problem however, I do not need to restart SQL Server box, just the IIS Server. Not sure if that makes a difference or not.
February 6, 2006 at 12:26 pm
Also, there is no problems being reported in any of the logs
February 6, 2006 at 1:30 pm
Keep in mind, to fix the problem however, I do not need to restart SQL Server box, just the IIS Server. Not sure if that makes a difference or not.
It isn't likely to be an memory leak then. That would need a sql server reset.
Since the IIS box is rebooted all its connections are dropped. (releasing locks, rollbacking transactions...)
->Is the amount of connections leveling or does it continues to grow?
->Are there any transactions left open
Is the server cpu licensed or seat licensed?
February 6, 2006 at 1:47 pm
Is there another method to check the number of connections other that looking at the admin and activity? The system is CPY licensed. Thanks!
February 6, 2006 at 2:26 pm
You can use the sp_who2 stored procedure to check the current connections from time to time. It runs much faster than enterprise manager activity.
You can also monitor a lot of sql server counters with the performance monitor
Cpu usage & IO activity may be handy too.
Is the impossible to connect time predictable? With sql profiler you can monitor the statements sent to sql server (with a performance hit)
February 6, 2006 at 2:33 pm
Thanks. The down time is not predictable (at least that I know of). I will monitor the connections to see if that might be the issue.
February 6, 2006 at 3:27 pm
Another important point...
This problem did not happen when SQL Server was on the same box as the web server (IIS). Only when it was moved to another server.
Viewing 9 posts - 1 through 9 (of 9 total)
You must be logged in to reply to this topic. Login to reply