gpt4 book ai didi

sql-server - 为什么 sys.indexes 表有一个 NULL 索引名称?

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

我运行了这个查询:

SELECT
i.name AS IndexName,
s.used_page_count * 8 AS IndexSizeKB
FROM sys.dm_db_partition_stats AS s
JOIN sys.indexes AS i
ON s.[object_id] = i.[object_id] AND s.index_id = i.index_id
WHERE s.[object_id] = object_id('dbo.Stu')
ORDER BY i.name

并且返回的最大索引的名称为 NULL。这是什么意思?

最佳答案

来自sys.indexes :

Name of the index...
NULL = Heap

所以这些都是堆。

关于sql-server - 为什么 sys.indexes 表有一个 NULL 索引名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2248828/

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