The following query is executed every second on SQL Server. Is this bahavior by design and can I adjust the interval?
exec sp_executesql N'SELECT TOP 100 *
FROM [umbracoCacheInstruction]
WHERE (([umbracoCacheInstruction].[id] > @0))
ORDER BY ([umbracoCacheInstruction].[id])',N'@0 int',@0=27073
repeated SQL Server queries
The following query is executed every second on SQL Server. Is this bahavior by design and can I adjust the interval?
exec sp_executesql N'SELECT TOP 100 * FROM [umbracoCacheInstruction] WHERE (([umbracoCacheInstruction].[id] > @0)) ORDER BY ([umbracoCacheInstruction].[id])',N'@0 int',@0=27073
is working on a reply...