ORA-02212: duplicate PCTFREE option specification
Cause: PCTFREE option specified more than once.
Action: Specify PCTFREE at most once.
。
ORA-02212错误指出,在通过ALTER TABLE子句创建或修改表时,已经指定了重复的PCTFREE选项。
当ALTER TABLE语句中出现重复的PCTFREE选项时,将发生ORA-02212错误。
1、例如,在向表中添加列时,指定了多个PCTFREE选项:
ALTER TABLE test
ADD col1 INTEGER PCTFREE 10
PCTFREE 10;
要解决ORA-02212的问题,必须检查ALTER TABLE语句,并去掉重复的PCTFREE选项。下面是正确的语法:
ALTER TABLE test
ADD col1 INTEGER PCTFREE 10;