ORA-30348: ADD and DROP cannot both be specified
Cause: One or more ADD clauses were found in the same ALTER DIMENSION statement with one or more DROP clauses.
Action: Separate your ADD operations into one ALTER DIMENSION statement and your DROP operations into another.
这个错误表明ORACLE在执行ALTER TABLE时出现冲突,这时同时出现了添加和删除语句,这是系统不允许的。
这句话是由Oracle Server抛出的错误,以此来指定不能在一条语句中的两个关键字ADD和DROP混合使用。
1.首先,要了解抛出ORA-30348错误的原因,并检查ALTER TABLE语句及其子句,确认是否同时出现ADD和DROP关键字。
2.仔细检查代码,将ALTER TABLE语句中添加内容和删除内容分开写,将添加子句写在一起,删除子句写在一起,以免同时出现ADD和DROP关键字。
3.执行ALTER TABLE语句,确认正确的代码是否可以正常执行。