我正在调整我的sql服务器,当我显示我的一个查询的执行计划在顶部它读取:
“缺失指数(影响99.7782):CREATE NONCLUSTERED INDEX …”
所以我查看了缺少的索引详细信息,它显示:
/* Missing Index Details from ExecutionPlan1.sqlplan The Query Processor estimates that implementing the following index could improve the query cost by 99.7782%. */ /* USE [phsprod] GO CREATE NONCLUSTERED INDEX [<Name of Missing Index,sysname,>] ON [dbo].[address] ([userid]) GO */
我一直在使用sql大约一个月,我从来没有做过任何事情,因为我已经为我建立了所有的表。任何人都可以帮助解释/给我任何关于这个做什么的想法?谢谢。