ORA-25149: Columns of UROWID type may not be indexed
Cause: An attempt was made to create an index on a column of UROWID type
Action: Remove the column from the list of indexed columns
本错误信息表明: 列类型为UROWID不能被索引。
ORA-25149: 列类型为UROWID不能被索引。
在创建表时,若某个列类型为UROWID,则在创建索引时就可能出现本错误。
1. 修改表定义,将列的类型改为不为UROWID的类型;
2. 创建索引时选择该列,即可正常创建索引。