SQL数据库管理索引时可用到的视图_SQL SERVER数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

SQL数据库管理索引时可用到的视图

作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0

本篇关键词:索引管理数据库
黑客防线网安网讯:  从网上找到两个在SQL Server管理索引时可用到的视图:  从www.sqlservercentral.com找到发现可能没有聚簇索引的表,没有PK索引的表,冗余的索引,字段倒序排列的索引名称:all_index_v...

  从网上找到两个在SQL Server管理索引时可用到的视图:

  从www.sqlservercentral.com找到发现可能没有聚簇索引的表没有PK索引的表冗余的索引,字段倒序排列的索引名称:all_index_view.sql

  需要在每一个你想检测的库下建立这个视图INDEXVIEW,然后调用里面注释了的select查询语句来显示结果

SELECT 'Showing Tables with Missing Clustered index' AS Comments, I.*
FROM dbo.INDEXVIEW I
WHERE ClusterType = 'HEAP'
GO
SELECT 'Showing Tables with Missing Primary Keys' AS Comments, I.*
FROM dbo.INDEXVIEW I
LEFT OUTER JOIN dbo.INDEXVIEW I2
ON I.TableID = I2.TableID
AND I2.UniqueType = 'PRIMARY KEY'
WHERE I2.TableID IS NULL
GO
SELECT 'Showing Possible Redundant Index keys' AS Comments , I.*
FROM dbo.INDEXVIEW I
JOIN dbo.INDEXVIEW I2
ON I.TableID = I2.TableID
AND I.ColName1 = I2.ColName1
AND I.IndexName <> I2.IndexName
ORDER BY I.TableName,I.IndexName
GO
SELECT 'Showing Possible Reverse Index keys' AS Comments , I.*
FROM dbo.INDEXVIEW I
JOIN dbo.INDEXVIEW I2
ON I.TableID = I2.TableID
AND I.ColName1 = I2.ColName2
AND I.ColName2 = I2.ColName1
AND I.IndexName <> I2.IndexName
GO

  还有一个类似功能的视图:

  从www.sql-server-performance.com找到可能冗余的索引:find_dup_index_view.sql

  也是需要在每一个你想检测的库下建立这个视图vw_index_list,然后一到两个月运行一下,找找冗余的索引

SELECT table_name,constraint_name, indexname, constraint_type
FROM information_schema.table_constraints c
INNER JOIN vw_index_list i ON c.constraint_name = i.indexname

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-9720-1.html
网站维护教程更新时间:2012-03-21 02:24:41  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer