在数据字典中哪里可以找到范围区间分区表空间?
对于范围区间分区表,您可以指定多个表空间,例如:
CREATE TABLE range_part_interval_table(col1 NUMBER, col2 NUMBER)
PARTITION BY RANGE (col1)
INTERVAL (10) STORE IN (ts2, ts3, ts4)
(PARTITION VALUES LESS THAN (100) TABLESPACE ts1);
但我找不到区间表空间存储在数据字典中的位置(此处为ts2、ts3、ts4
)。此信息在某处可用吗?
For a range interval partitioned table, you can specify multiple tablespaces like:
CREATE TABLE range_part_interval_table(col1 NUMBER, col2 NUMBER)
PARTITION BY RANGE (col1)
INTERVAL (10) STORE IN (ts2, ts3, ts4)
(PARTITION VALUES LESS THAN (100) TABLESPACE ts1);
But I can't find where the interval tablespaces are stored in the data dictionary (here, ts2, ts3, ts4
). Is this information available somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该会为您提供所需的信息:
以下是表格说明:
This should get you the info you need:
The following is the table description:
除非您有一些数据,否则您的间隔分区并不存在......
空表仅具有定义的分区。但是如果我们插入一些不同时间间隔的数据......
Your interval partitions don't exist until you have some data in them....
The empty table has only the defined partition. But if we insert some data for different intervals....
检查 sys.insert_tsn_list$
check sys.insert_tsn_list$