Oracle分区
我有 1 个表,其中包含 8 个子表。每个子表又包含3到5个子表。现在我的问题是是否可以按层次结构对表进行分区?这意味着我喜欢将所有表信息保留在一张表中,然后在它们上创建分区。
I have 1 table which contain 8 subtables. Each subtable contains another 3 to 5 subtables. Now my question is that is it possible to partition tables by hierarchy? That means i like to keep all the tables info in one table and then create partitioning on them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。 Oracle 允许我们在分区内定义分区:它被称为 子分区。
Yes. Oracle allows us to define partitions within partitions: it is called subpartitioning.
2种方式:
1.首先对主表进行分区,然后进行子分区。
笔记:
使用 DBMS_REDEFINITION 和 RANGE 分区
2 ways:
1. First Partition the main table and proceed with the sub partition.
Note:
use DBMS_REDEFINITION and RANGE partitioning