ora-14402错误的解决方法:
SQL> update hist_Trans_m set settle_date = '20111201';
update hist_Trans_m set settle_date = '20111201'
*
ERROR at line 1:
ORA-14402: updating partition key column would cause a partition change
SQL> alter table hist_trans_m enable row movement;
Table altered.
SQL> update hist_trans_m set settle_date = '20111201';
13440 rows updated.
SQL>
Jesus love you!