SqlServer教程

查看Sqlserver数据库中索引使用情况

本文主要是介绍查看Sqlserver数据库中索引使用情况,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

转自:https://blog.csdn.net/weixin_46867655/article/details/106330669
索引能加快速度,一般人都知道这个。

但是索引也有另一面,就是索引是有开销的,每次update、delete、insert表的时候,都会维护相应的索引,把值维护到索引中去。所以索引并不是越多越好,建好索引之后需要定期的查看索引的使用,比如一条索引一次没被查过,但是被修改了几十万甚至上百万次,那么这些修改都是需要资源消耗的。同时也要占用磁盘空间,对于这些删掉。对于user_seeks次数很少,或者为0的索引,可以删除这些索引;那如何查询索引的使用情况呢?如下:

use vims_sc --要查看的数据库
 
select db_name(database_id) as N'数据库名称',
       object_name(a.object_id) as tbname,
       b.name N'索引名称',
       user_seeks N'用户索引查找次数',
       user_scans N'用户索引扫描次数',
       last_user_seek N'最后查找时间',
       last_user_scan N'最后扫描时间',
       rows as N'表中的行数'
	   into #tmp
from sys.dm_db_index_usage_stats a join 
     sys.indexes b
     on a.index_id = b.index_id
     and a.object_id = b.object_id
     join sysindexes c
     on c.id = b.object_id
where database_id=db_id('vims_sc')   ---改成要查看的数据库
and object_name(a.object_id) not like 'sys%'
order by user_seeks,user_scans,object_name(a.object_id)
 
select *from #tmp where tbname='AP_VC_Vaccine'
这篇关于查看Sqlserver数据库中索引使用情况的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!