/*eg:

--调用该过程实例
--1 创建临时表
IF OBJECT_ID('tempdb..#index_sql_text') IS NOT NULL
DROP TABLE #index_sql_text
CREATE TABLE #index_sql_text(
tablename varchar(700),
index_name VARCHAR(200),
index_description VARCHAR(200),
index_keys VARCHAR(200),
create_sql_test VARCHAR(500),
drop_sql_test VARCHAR(500)
) --2 执行过程向临时表写入数据
EXEC pro_index_sql_text 'ED_RetailPriceIndex','PK_ED_RetailPriceIndex' --3 使用临时表数据
SELECT * FROM #index_sql_text */ IF EXISTS (SELECT TOP 1 1 FROM sys.objects where type = 'P' AND name = 'pro_index_sql_text')
DROP PROCEDURE pro_index_sql_text
GO CREATE PROCEDURE pro_index_sql_text
@objname nvarchar(776), --表名:该变量不能为空,所以不默认指定
@indexname nvarchar(200) = NULL --索引名:当指定索引时返回该索引数据,当没有指定值时默认返回表的所有索引
AS /*
最后修改日期:2016-12-08
说明:给定表名,返回对应表的索引,主键,唯一约束键的删除及新建脚本
参数:@objname-表名,必须指定,不能包含架构名如 dbo.table(有问题),table(正确)
@indexname-索引名:当指定索引时返回该索引数据,当没有指定值时默认返回表的所有索引 --declare @objname varchar(776)
--select @objname = 'TEST_TABLE'
*/ --1 判断过程外面是否已经创建,创建临时表 #index_sql_text 存放最后结果
IF OBJECT_ID('tempdb..#index_sql_text') IS NULL
BEGIN
CREATE TABLE #index_sql_text(
tablename varchar(700),
index_name VARCHAR(200),
index_description VARCHAR(200),
index_keys VARCHAR(200),
create_sql_test VARCHAR(500),
drop_sql_test VARCHAR(500)
)
END --2 声明变量并检查库表关系(借鉴系统过程 sp_helpindex)
declare @objid int, -- the object id of the table
@indid smallint, -- the index id of an index
@groupid int, -- the filegroup id of an index
@indname sysname,
@groupname sysname,
@status int,
@keys nvarchar(2126), --Length (16*max_identifierLength)+(15*2)+(16*3)
@dbname sysname,
@ignore_dup_key bit,
@is_unique bit,
@is_hypothetical bit,
@is_primary_key bit,
@is_unique_key bit,
@auto_created bit,
@no_recompute bit --@dbname 赋值
select @dbname = parsename(@objname,3)
if @dbname is null
select @dbname = db_name() -- Check to see the the table exists and initialize @objid.
select @objid = object_id(@objname)
if @objid is NULL
begin
raiserror(15009,-1,-1,@objname,@dbname)
return
end --3 声明游标(包括该表的索引情况)
declare ms_crs_ind cursor local static for
select
i.index_id,
i.data_space_id,
i.name,
i.ignore_dup_key,
i.is_unique,
i.is_hypothetical,
i.is_primary_key,
i.is_unique_constraint,
s.auto_created,
s.no_recompute
from sys.indexes i
join sys.stats s on i.object_id = s.object_id and i.index_id = s.stats_id
where i.object_id = @objid --限制对象名称
and (i.name = @indexname OR @indexname IS NULL) --限制索引名称 --打开游标
open ms_crs_ind --获取游标数据
fetch ms_crs_ind into @indid, @groupid, @indname, @ignore_dup_key, @is_unique, @is_hypothetical,
@is_primary_key, @is_unique_key, @auto_created, @no_recompute -- IF NO INDEX, QUIT
if @@fetch_status < 0
begin
deallocate ms_crs_ind
raiserror(15472,-1,-1,@objname) -- Object does not have any indexes.
return
end --4 新建存放基础数据临时表 #spindtab
IF OBJECT_ID('tempdb..#spindtab') IS NOT NULL
DROP TABLE #spindtab
CREATE TABLE #spindtab
(
index_name sysname collate database_default NOT NULL,
index_id int,
ignore_dup_key bit,
is_unique bit,
is_hypothetical bit,
is_primary_key bit,
is_unique_key bit,
auto_created bit,
no_recompute bit,
groupname sysname collate database_default NULL,
index_keys nvarchar(2126) collate database_default NOT NULL -- see @keys above for length descr
) -- Now check out each index, figure out its type and keys and
-- save the info in a temporary table that we'll print out at the end.
while @@fetch_status = 0
begin
-- First we'll figure out what the keys are.
declare @i int, @thiskey nvarchar(131) -- 128+3 /*
返回索引信息及索引字段的升降序
INDEXKEY_PROPERTY ( object_ID ,index_ID ,key_ID ,property )
property 要返回其信息的属性的名称。
IsDescending
存储索引列的排序顺序。
1 = 降序 0 = 升序
*/
select @keys = index_col(@objname, @indid, 1), @i = 2
if (indexkey_property(@objid, @indid, 1, 'isdescending') = 1)
--select @keys = @keys + '(-)'
select @keys = @keys + ' desc' select @thiskey = index_col(@objname, @indid, @i)
if ((@thiskey is not null) and (indexkey_property(@objid, @indid, @i, 'isdescending') = 1))
--select @thiskey = @thiskey + '(-)'
select @thiskey = @thiskey + ' desc' while (@thiskey is not null )
begin
select @keys = @keys + ', ' + @thiskey, @i = @i + 1
select @thiskey = index_col(@objname, @indid, @i)
if ((@thiskey is not null) and (indexkey_property(@objid, @indid, @i, 'isdescending') = 1))
--select @thiskey = @thiskey + '(-)'
select @thiskey = @thiskey + ' desc'
end select @groupname = null
select @groupname = name from sys.data_spaces where data_space_id = @groupid -- INSERT ROW FOR INDEX
insert into #spindtab values (@indname, @indid, @ignore_dup_key, @is_unique, @is_hypothetical,
@is_primary_key, @is_unique_key, @auto_created, @no_recompute, @groupname, @keys) -- Next index 获取游标下一条数据
fetch ms_crs_ind into @indid, @groupid, @indname, @ignore_dup_key, @is_unique, @is_hypothetical,
@is_primary_key, @is_unique_key, @auto_created, @no_recompute
end
deallocate ms_crs_ind --5 结果集拼接并写入临时表
insert into #index_sql_text
select
@objname,
'index_name' = index_name,
'index_description' = convert(varchar(210), --bits 16 off, 1, 2, 16777216 on, located on group
case when index_id = 1 then 'clustered' else 'nonclustered' end
+ case when ignore_dup_key <>0 then ', ignore duplicate keys' else '' end
+ case when is_unique <>0 then ', unique' else '' end
+ case when is_hypothetical <>0 then ', hypothetical' else '' end
+ case when is_primary_key <>0 then ', primary key' else '' end
+ case when is_unique_key <>0 then ', unique key' else '' end
+ case when auto_created <>0 then ', auto create' else '' end
+ case when no_recompute <>0 then ', stats no recompute' else '' end
+ ' located on ' + groupname),
'index_keys' = index_keys,
'create_sql_test' = CASE WHEN is_primary_key = 1 THEN 'ALTER TABLE ' + @objname+ ' ADD CONSTRAINT ' + index_name + ' PRIMARY KEY '
+CASE WHEN index_id =1 THEN 'CLUSTERED ' ELSE 'NONCLUSTERED ' END
+'('+index_keys+');'
WHEN is_primary_key = 0 AND is_unique_key = 1 THEN 'ALTER TABLE ' + @objname+ ' ADD CONSTRAINT ' + index_name
+CASE WHEN is_unique =0 THEN '' ELSE ' UNIQUE ' END
+CASE WHEN index_id =1 THEN 'CLUSTERED ' ELSE 'NONCLUSTERED ' END
+'('+index_keys+');'
WHEN is_primary_key = 0 AND is_unique_key = 0 THEN 'CREATE ' +
CASE WHEN is_unique =0 THEN '' ELSE 'UNIQUE ' END +
CASE WHEN index_id =1 THEN 'CLUSTERED ' ELSE 'NONCLUSTERED ' END + 'INDEX '+index_name+
' on ' + @objname+'('+index_keys+');'
END,
'drop_sql_test' = CASE WHEN is_primary_key = 1 THEN 'ALTER TABLE ' + @objname+ ' DROP CONSTRAINT ' + index_name+';'
WHEN is_primary_key = 0 AND is_unique_key = 1 THEN 'ALTER TABLE ' + @objname
+ ' DROP CONSTRAINT ' + index_name+';'
WHEN is_primary_key = 0 AND is_unique_key = 0 THEN 'DROP INDEX ' + @objname
+'.'+ index_name+';'
END
from #spindtab
order by index_name /*
--调试代码是方便查看,用于调度时不需要该语句
SELECT * FROM #index_sql_text
*/

sqlserver用于统计表索引情况的更多相关文章

  1. SQLServer → 09:索引

    一.索引概念 用途 我们对数据查询及处理速度已成为衡量应用系统成败的标准,而采用索引来加快数据处理速度通常是最普遍采用的优化方法. 概念 索引是一个单独的,存储在磁盘上的数据结构,它们包含则对数据表里 ...

  2. SQLSERVER如何查看索引缺失

    SQLSERVER如何查看索引缺失 当大家发现数据库查询性能很慢的时候,大家都会想到加索引来优化数据库查询性能, 但是面对一个复杂的SQL语句,找到一个优化的索引组合对人脑来讲,真的不是一件很简单的事 ...

  3. SQLSERVER的 筛选索引(Fiter Index)

    fiter index(筛选索引)是SQL Server的一项功能,可使此数据库与众不同. 筛选索引的概念 SQL Server中常用的索引是一种物理结构,它包含来自所有行的一组选定列的值 在一张桌子 ...

  4. SQLServer之修改索引

    使用SSMS数据库管理工具修改索引 使用表设计器修改索引 表设计器可以修改任何类型的索引,修改索引的步骤相同,本示例为修改唯一非聚集索引. 1.连接数据库,选择数据库,选择数据表->右键点击表- ...

  5. SQLServer 事物与索引

    SqlServer 事物与索引 分享by:授客 QQ:1033553122 详情点击百度网盘分享链接: SqlServer 事物与索引.ppt

  6. 一个try可以跟进多个catch语句,用于处理不同情况,当一个try只能匹配一个catch

    一个try可以跟进多个catch语句,用于处理不同情况.当一个try只能匹配一个catch. 我们可以写多个catch语句,但是不能将父类型的exception的位置写在子类型的excepiton之前 ...

  7. SqlServer中查看索引的使用情况

    --查看数据库索引的使用情况 select db_name(database_id) as N'TOPK_TO_DEV', --库名 object_name(a.object_id) as N'Top ...

  8. 查看SqlServer的内存使用情况

    上一篇提到动态T-SQL会产生较多的执行计划,这些执行计划会占用多少内存呢?今天从徐海蔚的书中找到了答案.动态视图不仅可以查到执行计划的缓存,数据表的页面缓存也可以查到,将SQL整理一下,做个标记. ...

  9. 【SqlServer】聚集索引与主键、非聚集索引

    目录结构: contents structure [-] 聚集索引和非聚集索引的区别 聚集索引和主键的区别 主键和(非)聚集索引的常规操作 聚集索引.非聚集索引在SqlServer.MySQL.Ora ...

随机推荐

  1. bzoj 1500 修改区间 splay

    内个我也不知道哪儿不对,TLE了,说说思路吧 其实思路也没什么说的,就是裸的splay,对于最后一个操作 我们记下每个区间的最长前缀,最长后缀,那么最长子序列就是 前缀,后缀,左子树的后缀+右子树的前 ...

  2. 使用APICloud打包webapp

    做个记录: 参照apicloud官方文档:http://docs.apicloud.com/Dev-Tools/sublime-apicloud-plugin 可以看下我的github:https:/ ...

  3. (转)自动安装VIM插件

    转自: http://xwz.me/wiki/doku.php?id=vim:plugins 我的插件列表 把下面GetLatestVimScripts.dat放进~/.vim/GetLatest/目 ...

  4. Linux进程冻结技术【转】

    转自:http://blog.csdn.net/zdy0_2004/article/details/50018843 http://www.wowotech.net/ 1 什么是进程冻结 进程冻结技术 ...

  5. Appium===Appium+Python API(转)

    Appium+python自动化8-Appium Python API 前言: Appium Python API全集,不知道哪个大神整理的,这里贴出来分享给大家. 1.contexts contex ...

  6. 学习struts2

    有部分内容转载牛人的博客: http://blog.csdn.net/hudie1234567/article/details/6730481 http://blog.csdn.net/lishuan ...

  7. GO语言的数据结构测试

    用于docker了,go也慢慢看一些.. 推荐书籍<go语言实践>就是<Go in Action>的中文版,有文字版PDF的. package main import ( &q ...

  8. 发布Office 365插件

    在上一篇博客<VisualStudio 2013开发Office插件>开发完成了插件后,需要将插件发布 发布前需要: Azure 应用服务,作为Office插件的发布空间,地址是:http ...

  9. django CXRF介绍

    CSRF(Cross-site request forgery)跨站请求伪造,是攻击者利用用户的身份操作用户帐户的一种攻击方式.和XSS攻击一样,存在巨大的危害性. 一.攻击方法 1.低级的CXRF攻 ...

  10. 洛谷 P3397 地毯 【二维差分标记】

    题目背景 此题约为NOIP提高组Day2T1难度. 题目描述 在n*n的格子上有m个地毯. 给出这些地毯的信息,问每个点被多少个地毯覆盖. 输入输出格式 输入格式: 第一行,两个正整数n.m.意义如题 ...