@@ -4220,12 +4220,12 @@ BEGIN
4220
4220
ORDER BY worsts .total_rowcount DESC
4221
4221
),
4222
4222
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
4224
4224
FROM worsts
4225
4225
ORDER BY worsts .total_avg_log_bytes_mb DESC
4226
4226
),
4227
4227
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
4229
4229
FROM worsts
4230
4230
ORDER BY worsts .total_avg_tempdb_space DESC
4231
4231
)
@@ -4251,10 +4251,10 @@ BEGIN
4251
4251
SELECT 1002 , 255 , ' Worsts' , ' Worst Row Counts' , ' N/A' , rowcount_worst .msg
4252
4252
FROM rowcount_worst
4253
4253
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
4255
4255
FROM logbytes_worst
4256
4256
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
4258
4258
FROM tempdb_worst
4259
4259
OPTION (RECOMPILE );
4260
4260
0 commit comments