gpt4 book ai didi

sql-server - 获取所有非聚集索引

转载 作者:行者123 更新时间:2023-12-02 17:13:50 24 4
gpt4 key购买 nike

有谁知道有一个好的脚本可以获取 SQL Server 2005 的所有非聚集索引吗?

最佳答案

对于特定数据库中的所有非聚集索引:

select object_name(object_id) as tablename, * 
from sys.indexes where type_desc = 'NONCLUSTERED'

这将返回系统和非系统表。或者:

select t.name as tablename, i.* 
from sys.indexes i, sys.tables t
where i.object_id = t.object_id
and i.type_desc = 'NONCLUSTERED'

仅适用于用户态非聚集索引。

关于sql-server - 获取所有非聚集索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1633396/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com