We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3ec7c commit fd99907Copy full SHA for fd99907
1 file changed
SysAdmin-Tools/WSUS-Management-Tools/Scripts/wsus-reindex-smart.sql
@@ -16,9 +16,9 @@ JOIN sys.indexes AS i ON ips.object_id = i.object_id AND ips.index_id = i.index
16
JOIN sys.tables AS t ON t.object_id = i.object_id
17
JOIN sys.schemas AS s ON s.schema_id = t.schema_id
18
WHERE i.name IS NOT NULL
19
- AND ips.page_count >= 100 -- evita trabalho inútil
+ AND ips.page_count >= 100 -- avoid unnecessary work
20
AND i.is_disabled = 0
21
- AND i.type_desc <> 'HEAP' -- heaps não têm REBUILD
+ AND i.type_desc <> 'HEAP' -- heaps do not support REBUILD
22
ORDER BY ips.avg_fragmentation_in_percent DESC;
23
24
OPEN cur;
0 commit comments