SQL Server - 用于查找基于特定数据类型构建的所有聚簇索引的脚本

use*_*469 7 sql t-sql sql-server

我正在尝试查找在数据类型uniqueIdentifier的列上构建的所有聚簇索引.显然这对于​​聚簇索引来说是一个糟糕的选择,我正在尝试找到所有这些并删除它们.到目前为止,我编写的脚本为每个具有uniqueIdentifier的表返回所有聚簇索引.请帮忙.这是脚本:

select distinct object_name(i.object_id) AS tablename, i.name AS indexname, i.type_desc     as type 
from sys.indexes i
join sys.index_columns ic on ic.object_id = i.object_id and ic.index_id = i.index_id
join sys.columns c on c.column_id = ic.index_column_id 
join sys.types t on t.system_type_id = c.system_type_id
join sys.objects o on o.object_id = i.object_id
where t.name = 'uniqueidentifier'
and i.type_desc = 'clustered'
and object_name(i.object_id) not like 'sys%'
Run Code Online (Sandbox Code Playgroud)

Ric*_*iwi 8

select o.name objectname, i.name indexname, c.name as columnname
from sys.objects o
join sys.indexes i on i.object_id = o.object_id
join sys.index_columns ic on ic.index_id = i.index_id and ic.object_id = i.object_id
join sys.columns c on c.object_id = o.object_id and c.column_id = ic.column_id
join sys.types t on c.system_type_id = t.system_type_id
where o.is_ms_shipped = 0
  and i.type_desc = 'CLUSTERED'
  and t.name = 'uniqueidentifier'
order by o.name, i.name
Run Code Online (Sandbox Code Playgroud)