Skip to content

Commit 3fb6ae0

Browse files
authored
Merge pull request #877 from tgrohser/patch-1
Update monitoring-performance-by-using-the-query-store.md
2 parents 4e1e268 + ac307ba commit 3fb6ae0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/relational-databases/performance/monitoring-performance-by-using-the-query-store.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: "Monitoring Performance By Using the Query Store | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "10/26/2017"
@@ -487,9 +487,9 @@ hist AS
487487
JOIN sys.query_store_plan p ON p.plan_id = rs.plan_id
488488
WHERE (rs.first_execution_time >= @history_start_time
489489
AND rs.last_execution_time < @history_end_time)
490-
OR (rs.first_execution_time \<= @history_start_time
490+
OR (rs.first_execution_time <= @history_start_time
491491
AND rs.last_execution_time > @history_start_time)
492-
OR (rs.first_execution_time \<= @history_end_time
492+
OR (rs.first_execution_time <= @history_end_time
493493
AND rs.last_execution_time > @history_end_time)
494494
GROUP BY p.query_id
495495
),
@@ -504,9 +504,9 @@ recent AS
504504
JOIN sys.query_store_plan p ON p.plan_id = rs.plan_id
505505
WHERE (rs.first_execution_time >= @recent_start_time
506506
AND rs.last_execution_time < @recent_end_time)
507-
OR (rs.first_execution_time \<= @recent_start_time
507+
OR (rs.first_execution_time <= @recent_start_time
508508
AND rs.last_execution_time > @recent_start_time)
509-
OR (rs.first_execution_time \<= @recent_end_time
509+
OR (rs.first_execution_time <= @recent_end_time
510510
AND rs.last_execution_time > @recent_end_time)
511511
GROUP BY p.query_id
512512
)

0 commit comments

Comments
 (0)