@@ -4220,12 +4220,12 @@ BEGIN
42204220 ORDER BY worsts .total_rowcount DESC
42214221 ),
42224222 logbytes_worst AS (
4223- SELECT TOP 1 ' Your worst row count range was on ' + worsts .worst_date + ' between ' + worsts .worst_start_time + ' and ' + worsts .worst_end_time + ' .' AS msg
4223+ SELECT TOP 1 ' Your worst log bytes range was on ' + worsts .worst_date + ' between ' + worsts .worst_start_time + ' and ' + worsts .worst_end_time + ' .' AS msg
42244224 FROM worsts
42254225 ORDER BY worsts .total_avg_log_bytes_mb DESC
42264226 ),
42274227 tempdb_worst AS (
4228- SELECT TOP 1 ' Your worst row count range was on ' + worsts .worst_date + ' between ' + worsts .worst_start_time + ' and ' + worsts .worst_end_time + ' .' AS msg
4228+ SELECT TOP 1 ' Your worst tempdb range was on ' + worsts .worst_date + ' between ' + worsts .worst_start_time + ' and ' + worsts .worst_end_time + ' .' AS msg
42294229 FROM worsts
42304230 ORDER BY worsts .total_avg_tempdb_space DESC
42314231 )
@@ -4251,10 +4251,10 @@ BEGIN
42514251 SELECT 1002 , 255 , ' Worsts' , ' Worst Row Counts' , ' N/A' , rowcount_worst .msg
42524252 FROM rowcount_worst
42534253 UNION ALL
4254- SELECT 1002 , 255 , ' Worsts' , ' Worst Row Counts ' , ' N/A' , logbytes_worst .msg
4254+ SELECT 1002 , 255 , ' Worsts' , ' Worst Log Bytes ' , ' N/A' , logbytes_worst .msg
42554255 FROM logbytes_worst
42564256 UNION ALL
4257- SELECT 1002 , 255 , ' Worsts' , ' Worst Row Counts ' , ' N/A' , tempdb_worst .msg
4257+ SELECT 1002 , 255 , ' Worsts' , ' Worst tempdb ' , ' N/A' , tempdb_worst .msg
42584258 FROM tempdb_worst
42594259 OPTION (RECOMPILE );
42604260
0 commit comments