CTXSYS.Context INDEX REBUILD AFTER ADDING NEW RECORDS to search
I have the following table:
create table news(
id number Primary Key,
title varchar2(1000),
article blob default empty_blob());
create index idx_news_context on news(article) indextype is ctxsys.context;
The problem is that I have to rebuild the index on the complete table after adding any new record into the table, so that I can search the article with contains clause.
This takes a lot of time to rebuild after any insert or even in batch mode as the no. of records increases.
Any solution.
I would appreciate if u can drop me the way out on tsi2002@indiatimes.com
Thanks in advance..
Tech