索引有不同的表空间有什么逻辑原因吗?
您好,有人可以告诉我为什么我们为索引和数据创建不同的表空间吗?
Hi Can some let me know why we created different table space for Index and data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您好,有人可以告诉我为什么我们为索引和数据创建不同的表空间吗?
Hi Can some let me know why we created different table space for Index and data.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
人们普遍认为,将索引和表保存在单独的表空间中可以提高性能。现在,许多受人尊敬的专家认为这是一个神话(请参阅 此询问汤姆主题 - 搜索“神话”),但这仍然是一种常见做法,因为旧习难改!
第三方编辑
来自asktom的摘录: “索引表空间” 从 2001 年开始,适用于 Oracle 版本 8.1.6 问题
回复的第一部分
It is a widespread belief that keeping indexes and tables in separate tablespaces improves performance. This is now considered a myth by many respectable experts (see this Ask Tom thread - search for "myth"), but is still a common practice because old habits die hard!
Third party edit
Extract from asktom: "Index Tablespace" from 2001 for Oracle version 8.1.6 the question
First part of the Reply
这在 80 年代是有意义的,当时用户不多,数据库大小也不是太大。当时,将索引和表存储在不同的物理卷中非常有用。
现在有了逻辑卷、raid等,不需要将索引和表存储在不同的表空间中。
但所有表空间必须以统一的扩展大小进行本地管理。从这个角度来看,索引必须存储在不同的表空间中,因为当索引的表空间有足够的 512Kb 扩展大小时,具有 50 列的表可以存储在 5Mb 扩展大小的表空间中。
It makes a sense in 80s, when there were not to many users and the databases size was not too big. At that time it was usefull to store indexes and tables in the different physical volumes.
Now there are the logical volumes, raid and so on and it is not necessary to store the indexes and tables in different tablespaces.
But all tablespaces must be locally managed with uniform extends size. From this point of view the indexes must be stored in different tablespace as the table with the 50 columns could be stored in the tablespace with 5Mb exteds size, when the tablespace for indexes will be enought 512Kb extended size.