Hi,
We are using FullTextSearch in one of our table columns. A Context index is created for this purpose.
CREATE INDEX CONTENT_idx ON TEMPLATE (CONTENT) INDEXTYPE IS CTXSYS.CONTEXT;
These kind of indexes are not transactional. So we need to synchronize them whenever a new data is inserted/updated into the table. Also we need to optimize this index on daily basis to improve the performance of the Queries.
Is there anyway to do this through LLBLGen? Or what is the better way to do this?