Skip to content

Commit 44b2261

Browse files
mild best wishes
* health parser was missing information in raised messages * pressure detector had some misaligned list items
1 parent 90d07a9 commit 44b2261

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

sp_HealthParser/sp_HealthParser.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1819,7 +1819,7 @@ AND ca.utc_timestamp < @end_date';
18191819
RTRIM(CONVERT(date, @end_date)) +
18201820
' with a minimum duration of ' +
18211821
RTRIM(@wait_duration_ms) +
1822-
'.'
1822+
'ms.'
18231823
ELSE 'no queries with significant waits found!'
18241824
END;
18251825

@@ -2329,7 +2329,7 @@ AND ca.utc_timestamp < @end_date';
23292329
RTRIM(CONVERT(date, @end_date)) +
23302330
' with a minimum average duration of ' +
23312331
RTRIM(@wait_duration_ms) +
2332-
'.'
2332+
'ms.'
23332333
ELSE 'no significant waits found!'
23342334
END
23352335

sp_PressureDetector/sp_PressureDetector.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1395,9 +1395,9 @@ OPTION(MAXDOP 1, RECOMPILE);',
13951395
/*Stats/Compilation*/
13961396
N'WAIT_ON_SYNC_STATISTICS_REFRESH',
13971397
/*Throttling*/
1398-
N'IO_QUEUE_LIMIT',
1399-
N'IO_RETRY',
1400-
N'RESMGR_THROTTLED'
1398+
N'IO_QUEUE_LIMIT',
1399+
N'IO_RETRY',
1400+
N'RESMGR_THROTTLED'
14011401
)
14021402
/*Locking*/
14031403
OR dows.wait_type LIKE N'LCK%'

0 commit comments

Comments
 (0)