ORA-31423: change table string does not contain column string
Cause: Issued ALTER_CHANGE_TABLE with a drop operation and the specified column does not exist in the change table.
Action: Recheck the names, and call the procedure again.
等
ORA-31423:change table string does not contain column string
该错误可能在以下情况出现:
(1)在更改列的时候提供了错误的列名称。
(2)尝试更改columns来自历史表的列,但没有在当前change table中存在这个column。
此问题的正常处理步骤为:
(1)使用DESCRIBE TABLE 语句来验证column是否是改变表中定义的
(2)如果column不存在,则更改ADD COLUMN的ALTER TABLE语句,或者使用新的column与历史表完全匹配
(3)确认该column存在于最新的change table中,然后重新发布ALTER TABLE语句。