Frozen DNN wrote
Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
I don't know why but I am getting them a lot lately. Not on just one website but all of them. Few of them don't even have any traffic. I use them to test stuff and get these time outs when I am trying to clear the event viewe log, upload a module. What'sn going on? Can anyone please enlight me?
Thanks for your time..
|
Sounds like you need to do some database maintenance. Here is a quick way to clear the event log when you can't do it through the UI
TRUNCATE TABLE {databaseOwner}{objectQualifier}EventLog
Your SiteLog may have also reached a size where the scheduler is not able to clear it out. If that's the case, then you need to delete some rows by using a delete statement. You may want to delete everything older than 30-days. You could also just run the statement above but replace EventLog with SiteLog.
I would also check and see how much space you have available in your transaction log.