Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-20000: Oracle Text error: DRG-10599: column is not indexed

mail8mzMay 6 2013 — edited May 6 2013
Hi All,

I am using Oracle 11.2, and having DRG-10599 error when I used contains and have ctxsys.context index as following:

create table tb_nm
(
nm varchar2(32) ,
addr clob
);

create index idx_addr on tb_nm(addr) indextype is ctxsys.context
parameters('storage idx_addr lexer TEXT_LEXER sync(on commit)');

select * from tb_nm where contains(addr, 'how are')>0;

Any suggestion?

Thanks!
This post has been answered by Solomon Yakobson on May 6 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 3 2013
Added on May 6 2013
5 comments
8,534 views