ORA-14084: you may specify TABLESPACE DEFAULT only for a LOCAL index
Cause: User attempted to specify TABLESPACE DEFAULT for an object other than a LOCAL index, which is illegal.
Action: Reenter the statement without TABLESPACE DEFAULT clause.
ORA-14084: 您只能为局部索引指定默认表空间
ORA-14084表示,用户正在尝试为全局索引指定默认表空间,而该操作只允许对局部索引执行。
一个用户在使用SQL创建索引时,用户在指定表空间时便可能遇到ORA-14084错误,这是因为该用户需要为局部索引指定默认表空间而不是全局索引。
1.检查SQL语句,确保您只为局部索引指定了默认表空间。
2.如果您需要为全局索引指定默认表空间,请使用ALTER INDEX语句,而不是CREATE INDEX语句。