Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个查询来列出我数据库中的所有索引。这个简单的代码会起作用吗?
select * from sys.indexes
我不确定这是否正确,或者我是否需要更大的代码。
这实际上会给你太多的对象,因为 sys.indexes 除了非聚集索引和聚集索引之外还包括 HEAPS。如果您不想要 HEAPS,请使用:
select * from sys.indexes where name is not null