Check the MAXDOP for their instance in SQL Server Management Studio
SELECT value_in_use
FROM sys.configurations
WHERE name ='max degree of parallelism';
By default the value is 0.
The Active Requests query can be executed by engine optimizer in parallel workers (threads) unless the instance “max dop” is 1. Then if they are capturing events for each worker then it can look to them that query executed multiple times in one second when query executed only once.
When the Max DOP is set high (or 0 which is no limit), a single query might be executed across multiple processors, which can lead to multiple execution plans and operations being recorded in the audit logs. This could result in a higher number of audit entries if the operations or resource usage are logged.
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center