文档解释
ORA-29879: cannot create multiple domain indexes on a column list using same indextype
Cause: An attempt was made to define multiple domain indexes on the same column list using identical indextypes.
Action: Check to see if a different indextype can be used or if the index can be defined on another column list.
ORA-29879:在使用相同的索引类型时,不能在列表上创建多个域索引。
官方解释
常见案例
一般处理方法及步骤
1.确认是否尝试在包含多列的索引上定义多个索引。
2.确认操作是系统提供的正确操作过程。
3.如果正在尝试在包含多列的索引上定义多个索引,那么应遵循以下步骤来解决此错误:
a.使用替代索引:替换希望在现有索引上定义的索引,以创建多个索引。
b.重新设计表:对表进行重新设计,以包含一个要索引的字段,允许数据库在此字段上创建多个域索引。
c.重新索引表:使用DROP INDEX和CREATE INDEX语句重新索引表,以支持多个域索引。