ORACLE中重命名分区
如果我们使用 ALTER TABLE RENAME PARTITION 语句重命名 Oracle 表中的现有分区,是否需要使用新更改的分区名称重新创建本地分区索引?
if we use the ALTER TABLE RENAME PARTITION statement to rename the existing partitions in an Oracle table, do we need to recreate the local partitioned indexes with newly changed partition names?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不会,重命名分区不会影响本地分区索引。您可以轻松测试:
重命名分区后索引仍然使用
No, renaming partitions does not affect locally partitioned indexes. You can easily test that:
The index is still used, after renaming the partition
重命名分区不会影响本地分区索引,因此您无需重建索引。
Renaming partitions does not affect locally partitioned indexes, so you will not need to rebuild your indexes.