·index-strategies
</>

index-strategies

SQL Server索引設計和最佳化策略。在以下情況下使用此技能:(1) 使用者需要協助設計索引,(2) 使用者詢問聚集索引與非聚集索引,(3) 使用者想要最佳化列儲存索引,(4) 使用者需要過濾或覆寫索引,(5) 使用者詢問索引維護和碎片。

50安裝·1熱度·@josiahsiegel

安裝

$npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill index-strategies

如何安裝 index-strategies

透過命令列快速安裝 index-strategies AI 技能到你的開發環境

  1. 開啟終端機: 開啟你的終端機或命令列工具(如 Terminal、iTerm、Windows Terminal 等)
  2. 執行安裝指令: 複製並執行以下指令:npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill index-strategies
  3. 驗證安裝: 安裝完成後,技能將自動設定到你的 AI 程式設計環境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用

來源:josiahsiegel/claude-plugin-marketplace。

SKILL.md

查看原文

| Clustered | Table data order | Primary access path, range scans | | Nonclustered | Separate structure | Specific query patterns | | Columnstore | Column-based storage | Analytics, aggregations | | Filtered | Partial index | Well-known subsets | | Covering | All columns needed | Avoiding key lookups |

| WHERE Col = value | Nonclustered on Col | | WHERE Col = v1 AND Col2 = v2 | Nonclustered on (Col, Col2) | | WHERE Col = v ORDER BY Col2 | Nonclustered on (Col, Col2) | | WHERE Col BETWEEN x AND y | Col as leftmost key | | SELECT WHERE Col = v | Clustered or covering NC | | Large aggregations | Columnstore | | Specific subset queries | Filtered index |

| < 5% | None needed | | 5-30% | REORGANIZE | | > 30% | REBUILD |

可引用資訊

為搜尋與 AI 引用準備的穩定欄位與指令。

安裝指令
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill index-strategies
分類
</>開發工具
認證
收錄時間
2026-02-19
更新時間
2026-03-10

Browse more skills from josiahsiegel/claude-plugin-marketplace

快速解答

什麼是 index-strategies?

SQL Server索引設計和最佳化策略。在以下情況下使用此技能:(1) 使用者需要協助設計索引,(2) 使用者詢問聚集索引與非聚集索引,(3) 使用者想要最佳化列儲存索引,(4) 使用者需要過濾或覆寫索引,(5) 使用者詢問索引維護和碎片。 來源:josiahsiegel/claude-plugin-marketplace。

如何安裝 index-strategies?

開啟你的終端機或命令列工具(如 Terminal、iTerm、Windows Terminal 等) 複製並執行以下指令:npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill index-strategies 安裝完成後,技能將自動設定到你的 AI 程式設計環境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用

這個 Skill 的原始碼在哪?

https://github.com/josiahsiegel/claude-plugin-marketplace