什麼是 index-strategies?
SQL Server索引設計和最佳化策略。在以下情況下使用此技能:(1) 使用者需要協助設計索引,(2) 使用者詢問聚集索引與非聚集索引,(3) 使用者想要最佳化列儲存索引,(4) 使用者需要過濾或覆寫索引,(5) 使用者詢問索引維護和碎片。 來源:josiahsiegel/claude-plugin-marketplace。
SQL Server索引設計和最佳化策略。在以下情況下使用此技能:(1) 使用者需要協助設計索引,(2) 使用者詢問聚集索引與非聚集索引,(3) 使用者想要最佳化列儲存索引,(4) 使用者需要過濾或覆寫索引,(5) 使用者詢問索引維護和碎片。
透過命令列快速安裝 index-strategies AI 技能到你的開發環境
來源:josiahsiegel/claude-plugin-marketplace。
| 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-strategiesBrowse more skills from josiahsiegel/claude-plugin-marketplace
SQL Server索引設計和最佳化策略。在以下情況下使用此技能:(1) 使用者需要協助設計索引,(2) 使用者詢問聚集索引與非聚集索引,(3) 使用者想要最佳化列儲存索引,(4) 使用者需要過濾或覆寫索引,(5) 使用者詢問索引維護和碎片。 來源:josiahsiegel/claude-plugin-marketplace。
開啟你的終端機或命令列工具(如 Terminal、iTerm、Windows Terminal 等) 複製並執行以下指令:npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill index-strategies 安裝完成後,技能將自動設定到你的 AI 程式設計環境中,可以在 Claude Code、Cursor 或 OpenClaw 中使用
https://github.com/josiahsiegel/claude-plugin-marketplace