| ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine [message #314042] |
Tue, 15 April 2008 11:55  |
navkrish Messages: 152 Registered: May 2006 Location: NJ,USA |
Senior Member |

|
|
When i try to create context index on a table using below command
CREATE INDEX tx_id_temp ON search_attributes_temp
(bus_name)
INDEXTYPE IS ctxsys.CONTEXT
i am getting error
CREATE INDEX tx_id_temp ON search_attributes_temp
*
ERROR at line 1:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: Oracle Text error:
DRG-10507: duplicate index name: TX_ID_TEMP
ORA-06512: at "CTXSYS.DRUE", line 157
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 219
But when I search for this index using sql
select *
from all_objects
where object_name = 'TX_ID_TEMP'
I can see it created....
confused..
even i tried with dropping the index..same error
[Updated on: Tue, 15 April 2008 11:56]
|
|
|
|
| Re: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine [message #314087 is a reply to message #314042 ] |
Tue, 15 April 2008 15:19  |
 |
Barbara Boehmer Messages: 3940 Registered: November 2002 Location: California, USA |
Senior Member |
|
|
One more thing. Make sure that you have not just done:
CREATE INDEX ... ;
/
If so, the semi-colon (;) would execute the create statement once and the slash (/) would execute the same statement a second time, which would produce the error, since the index was already created the first time.
|
|
|