Skip to content

Commit aea7771

Browse files
Update sp_BlitzLock.sql
This is a hot fix. I keep running into servers where the physical reads columns are inconsistently there. I'm going to pull them for now. I don't feel like making this query dynamic at the moment.
1 parent d3a0cc1 commit aea7771

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

sp_BlitzLock.sql

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3665,8 +3665,6 @@ BEGIN
36653665
ap.avg_elapsed_time,
36663666
ap.total_logical_reads_mb,
36673667
ap.total_physical_reads_mb,
3668-
ap.min_physical_reads_mb,
3669-
ap.max_physical_reads_mb,
36703668
ap.total_logical_writes_mb,
36713669
ap.min_grant_mb,
36723670
ap.max_grant_mb,
@@ -3733,10 +3731,6 @@ BEGIN
37333731
deqs.total_logical_writes * 8. / 1024.,
37343732
total_logical_reads_mb =
37353733
deqs.total_logical_reads * 8. / 1024.,
3736-
min_physical_reads_mb =
3737-
deqs.min_physical_reads * 8. / 1024.,
3738-
max_physical_reads_mb =
3739-
deqs.max_physical_reads * 8. / 1024.,
37403734
min_grant_mb =
37413735
deqs.min_grant_kb * 8. / 1024.,
37423736
max_grant_mb =

0 commit comments

Comments
 (0)