For some reason I get an SQL timeout when I try to enter the interface.
In the log files it says:
Error executing query SELECT Id FROM icUrlTracker WHERE OldUrl IS NULL AND OldRegex IS NULL System.Data.SqlClient.SqlException (0x80131904): Timeout expired.
But when I try to execute this directly on the server it gives me big round 0 (ZERO)
SELECT COUNT([Id]) FROM [dbo].[icUrlTracker] WHERE [OldUrl] IS NULL AND [OldRegex] IS NULL
There are 4.300.000 records in total in the table.
What should I do ?
SQL Timeout
For some reason I get an SQL timeout when I try to enter the interface. In the log files it says:
But when I try to execute this directly on the server it gives me big round 0 (ZERO)
There are 4.300.000 records in total in the table. What should I do ?
I'm using Umbraco 7.2.6
Wow... That's a lot! I'd remove all 404 entries I guess.
If the result of this query is high:
SELECT COUNT(*) FROM icUrlTracker WHERE is404 = 1
You can remove them with this query:
DELETE FROM icUrlTracker WHERE is404 = 1
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.