From 14fa7b67cd532bd93f16deacd40ad13d1c724bbc Mon Sep 17 00:00:00 2001 From: lilin90 Date: Tue, 23 Sep 2025 16:11:13 +0800 Subject: [PATCH 1/2] best-practices: update wording --- best-practices/index-management-best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best-practices/index-management-best-practices.md b/best-practices/index-management-best-practices.md index cd3791b0aa52..6341934c7e75 100644 --- a/best-practices/index-management-best-practices.md +++ b/best-practices/index-management-best-practices.md @@ -224,7 +224,7 @@ SELECT * FROM sys.schema_unused_indexes; 详见[手动创建 `schema_unused_indexes` 视图](/sys-schema/sys-schema-unused-indexes.md#手动创建-schema_unused_indexes-视图)。 -## 使用不可见索引安全移除测试索引 +## 使用不可见索引安全测试索引移除 在未经充分验证的情况下直接删除索引可能带来性能风险,尤其是那些虽不常用但对特定查询仍至关重要的索引。 From 0c5134cea6f2cf831f7d8e826e64c5fdcde3d832 Mon Sep 17 00:00:00 2001 From: lilin90 Date: Tue, 23 Sep 2025 16:18:13 +0800 Subject: [PATCH 2/2] Update anchor link for invisible index section Corrected the internal anchor link text to match the updated section title for invisible index usage, improving navigation within the document. --- best-practices/index-management-best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/best-practices/index-management-best-practices.md b/best-practices/index-management-best-practices.md index 6341934c7e75..0b88fd6e14e1 100644 --- a/best-practices/index-management-best-practices.md +++ b/best-practices/index-management-best-practices.md @@ -216,7 +216,7 @@ SELECT * FROM sys.schema_unused_indexes; 如果索引在重要但不频繁的查询中出现,建议先保留或设为不可见。 -你可以使用[不可见索引](#使用不可见索引安全移除测试索引)来安全地验证某个索引是否可以删除,而不会影响系统性能。 +你可以使用[不可见索引](#使用不可见索引安全测试索引移除)来安全地验证某个索引是否可以删除,而不会影响系统性能。 ### 手动创建 `schema_unused_indexes` 视图