Oracle数据库问题记录

分区表的维护 - ORA-14400和ORA-14402 更新分

2018-11-12  本文已影响17人  单名一个冲

错误ORA-14402,在使用分区表时,需要注意的一个问题是,当我们更新分区字段时,可能会遇到如下错误示例:

SQL> update DOM_REAL_CATEGORY_FL set doc_level=101 where doc_level=51;
update DOM_REAL_CATEGORY_FL set doc_level=101 where doc_level=51
*
ERROR at line 1:
ORA-14402: updating partition key column would cause a partition change

这个错误的解释是:

ORA-14402: updating partition key column would cause a partition change
Cause: An UPDATE statement attempted to change the value of a partition key column causing migration of the row to another partition
Action: Do not attempt to update a partition key column or make sure that the new partition key is within the range containing the old partition key.

为了解决这个问题,可以使用如下命令更改分区表的属性:

开启分区列的修改

SQL> alter table <tableName> enable row movement;

Table altered.
关闭分区列的修改

SQL> alter table <tableName> disable row movement;

Table altered.

解释如下:

一般用于分区表,将row movement设置为enable,有可能发生行的物理移动,行的rowid会变化,某一行更新时,如果更新的是分区列,并且更新后的列值不属于原来的这个分区,如果开启了这个选项,就会把这行从这个分区中delete掉,并加到更新后所属的分区。相当于一个隐式的触发器,但不会触发Insert/delete触发器。如果没有开启这个选项,更新时就会报错。

所以需要修改row movement这个属性:alter table <tableName> enable row movement;将该属性打开,然后就可以对分区列进行修改。关闭是alter table <tableName> disable row movement;

你可能需要做的:更改分区表的分区键值,意味着要删除记录并重新插入一条新的记录,这会引起记录(Record)的移动,记录的Rowid会改变,相关索引需要进行维护。(有些文档并没有提及此操作)

SQL> update <tableName> set <IndexColumn> = 101 where <IndexColumn> = 51;

57024 rows updated.
当然row movement不只用于分区还用于闪回,如下:
SQL> flashback table <tableName> to scn <Clause>;
flashback table <tableName> to scn <Clause>
                      *
ERROR at line 1:
ORA-08189: cannot flashback the table because row movement is not enabled

1.创建表分区定义(PARTITION BY LIST代表创建的是LIST分区),分区有4中创建类型,需要了解请自行搜索,这里只简单讲解List方式构建:

CREATE TABLE <表名> (
    ...省略表结构
) TABLESPACE <表空间> PARTITION BY LIST (<列名(会将该列分区)>)(
    PARTITION <分区名(分区定义)> VALUES (<分区值(该字段存储的值)>) 
    [,PARTITION <分区名> VALUES (<分区值>),...如上形式]);

2.添加表分区定义

alter table <表名> add partition <分区名> values(<分区值>);

3.删除表分区定义

alter table <表名> drop partition <分区名>;

4.修改表分区定义

由于表分区没有 <modify> ,所以采用先删除后添加。
alter table <表名> drop partition <分区名>;
alter table <表名> add partition <分区名> values(<分区值>);

友情链接:
http://www.eygle.com/archives/2009/01/ora_14402_partition_tab.html
https://blog.csdn.net/gumengkai/article/details/51066136
https://www.cnblogs.com/wtiancai/p/3224914.html

上一篇下一篇

猜你喜欢

热点阅读