Add OPTION RECOMPILE for perf reasons due to temp table (#7242)

This commit is contained in:
denzilribeiro
2020-03-31 14:54:22 -05:00
committed by GitHub
parent 8ff2645550
commit ccefc42711

View File

@@ -790,7 +790,8 @@ FROM @PCounters AS pc
AND pc.object_name = pc1.object_name
AND pc.instance_name = pc1.instance_name
AND pc1.counter_name LIKE '%base'
WHERE pc.counter_name NOT LIKE '% base';
WHERE pc.counter_name NOT LIKE '% base'
OPTION(RECOMPILE);
`
// Conditional check based on Azure SQL DB v/s the rest aka (Azure SQL Managed instance OR On-prem SQL Server)