oracle中的索引,聚簇索引还是非聚簇索引
可能的重复:
Oracle 中的索引是聚簇索引还是非聚簇索引?
一个有 3 个导入键的表,每个键都有一个索引,我如何验证索引的类型?如果它是聚集索引(因此索引指向的数据是有序的)还是非结构化索引? 谢谢。
Possible Duplicate:
Is an index clustered or unclustered in Oracle?
i've a table with 3 imported key, there's an index for each of them, how can i verifity the type of index? If is it a clustered index (so the data pointed by index are ordered) or unclestered?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oracle 没有“聚集索引”(至少不是这个术语在 SQL Server 中的使用方式)
最接近聚集索引的是 Oracle 中的索引组织表。
Oracle does not have a "clustered index" (at least not the way this term is used e.g. in SQL Server)
The closest thing to a clustered index is an index organized table in Oracle.