From 31db6b1f4dcf79fa6709d0ef77d846eb6d795f1a Mon Sep 17 00:00:00 2001 From: Reece Goding <67124261+ReeceGoding@users.noreply.github.com> Date: Wed, 23 Oct 2024 23:14:18 +0100 Subject: [PATCH] QuickieStore Examples: Minor wording edits. --- sp_QuickieStore/Examples.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sp_QuickieStore/Examples.sql b/sp_QuickieStore/Examples.sql index be6522e..efb57a1 100644 --- a/sp_QuickieStore/Examples.sql +++ b/sp_QuickieStore/Examples.sql @@ -147,7 +147,7 @@ EXEC dbo.sp_QuickieStore '0x0900F46AC89E66DF744C8A0AD4FD3D3306B90000000000000000000000000000000000000000000000000000,0x0200000AC89E66DF744C8A0AD4FD3D3306B90000000000000000000000000000000000000000000000000000'; /*Check for regressions. -Specifically, this checks for queries that are did more logical reads last week than this week. +Specifically, this checks for queries that did more logical reads last week than this week. The default dates are helpful here. The default @start_date and @end_date specify last week for us and @regression_baseline_end_date defaults to being one week after @regression_baseline_start_date. However, we need to specify @regression_baseline_start_date so that sp_QuickieStore knows to check for regressions. Searches by query hash, so you will won't be caught out by identical queries with different query ids. @@ -187,7 +187,7 @@ To get percentage changes instead, specify @regression_comparator = 'relative'. The default is @regression_comparator = 'absolute'. To see the difference, run `sp_QuickieStore` twice. -To save space on your screen, we will specify @hide_help_table = 1 to hide the table that at the bottom of the normal output. +To save space on your screen, we will specify @hide_help_table = 1 to hide the table normally at the bottom of the normal output. */ DECLARE @TwoWeekAgo datetimeoffset(7) = DATEADD(WEEK, -2, SYSDATETIMEOFFSET());