ORA-02229: invalid SIZE option value
Cause: The specified value must be an integer number of bytes.
Action: Specify an appropriate value.
ORA-02229错误指的是,当使用SIZE参数时检测到了不正确的值。 SIZE参数是在一个ALTER TABLE语句中用来调整表空间中分配给某列的字节数大小值。它只能为指定列设置SIZE参数,以及在设置SIZE值时,只能设置受支持的字节数。
Cause: An invalid SIZE option value was specified in an ALTER TABLE statement.
Action: Specify a valid SIZE option value for the specified column.
1.查看ALTER TABLE语句中列的SIZE值是否合法。
2.如果不符合,则按照正确的SIZE值重写ALTER TABLE语句。
3.重新执行ALTER TABLE语句。