Skip to content

Commit 09d5de3

Browse files
committed
fix for case sensitivity
1 parent b96e402 commit 09d5de3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

defrag.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ INNER JOIN sys.objects as o ON o.object_id = s.object_id
3030
INNER JOIN sys.schemas as sc ON o.schema_id = sc.schema_id
3131
WHERE i.is_disabled = 0
3232
--AND s.page_count > 12800 --12800 pages is 100mb
33-
AND alloc_unit_Type_desc <> 'LOB_DATA'
33+
AND alloc_unit_type_desc <> 'LOB_DATA'
3434

3535
) x
3636
WHERE avg_fragmentation_pct > 70

0 commit comments

Comments
 (0)