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

This commit is contained in:
denzilribeiro
2020-03-31 12:54:22 -07:00
committed by GitHub
parent 8ff2645550
commit ccefc42711
+2 -1
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)