码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 查看一个表上的索引

时间:2014-10-21 19:09:51      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   for   sp   2014   on   log   bs   

方法:1

      sys.indexes

      index_id =0:堆

      index_id =1:聚集索引

      index_id =2.....:非聚集索引

-------------------------------------------------------------------------------------

例子:

create table Student(
ID int not null,
Name nvarchar(16),
Major nvarchar(16));
go

create index ix_for_Student_ID
on dbo.student(ID);
go

create clustered index ix_clu_for_Student_Name
on dbo.Student(Name);
go

select OBJECT_NAME(ix.object_id),ix.index_id,ix.name from sys.indexes as ix
where ix.object_id = object_id(‘Student‘);
go

   bubuko.com,布布扣

 

SQL Server 查看一个表上的索引

标签:blog   http   ar   for   sp   2014   on   log   bs   

原文地址:http://www.cnblogs.com/JiangLe/p/4040866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!