SQLSERVER 效能 建议加索引 EXEC sp_updatestats;

Posted Snowfun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLSERVER 效能 建议加索引 EXEC sp_updatestats;相关的知识,希望对你有一定的参考价值。

SELECT TOP 30
[Total Cost] = ROUND(avg_total_user_cost * avg_user_impact * (user_seeks + user_scans),0)
, avg_user_impact
, TableName = statement
, [EqualityUsage] = equality_columns
, [InequalityUsage] = inequality_columns
, [Include Cloumns] = included_columns
FROM sys.dm_db_missing_index_groups g
INNER JOIN sys.dm_db_missing_index_group_stats s
ON s.group_handle = g.index_group_handle
INNER JOIN sys.dm_db_missing_index_details d
ON d.index_handle = g.index_handle
where statement like ‘%ecology%‘
ORDER BY [Total Cost] DESC;

CREATE INDEX IDX_WFTOR ON workflow_currentoperator (id);
create index idx_wfnd on workflow_nodeform (nodeid,fieldid,isview,isedit);
create index idxofuiu on ofuserinfoupdate (username,updatestate);

以上是关于SQLSERVER 效能 建议加索引 EXEC sp_updatestats;的主要内容,如果未能解决你的问题,请参考以下文章

Postgresql concurrently index 为什么可以在线加索引

MySQL索引那些事:什么是索引?为什么加索引就查得快了?

当进行数据的去重查询时,使用group by效率更高。

mysql时间字段加索引后如何生效

MySQL分布值很少的字段要不要加索引

MySQL分布值很少的字段要不要加索引