没有索引的表的 SQL Server 物理数据布局
我很好奇是否有人知道数据在没有索引(甚至没有 PK)的表中的物理排列方式。 在这个问题中OP 声称需要很长时间才能删除集群 PK。 我知道聚集索引就是数据本身,但是新的数据排列是什么可以解释较长的处理时间?
I'm curious to see if anyone knows how is the data physically arranged in tables that don't have an index (not even a PK). In this question the OP claims it is taking a long time to drop a clustered PK. I know that the clustered index is the data itself, but what would be the new data arrangement that explains the long processing time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将是一个 HEAP< /a>:
It will be a HEAP: