when gets a text index type CONTEXT updated?
Like every other index on insert/update/delete or only when I call create
index?
Thank you
There is more than one kind of context index. There is one version
that Oracle can update as the table data changes though you usually
have to run a sync operation to perform the index update:
CTX_DDL.SYNC_INDEX.
See the Oracle® Text Reference 10g Release 2 (10.2) Part Number
B14218-01 or your version's equilivent.
HTH -- Mark D Powell --
Tell us what version of Oracle and OS. Depending on the version there are a
variety of ways:
On commit, via a scheduled job, an OS service, etc.
> Tell us what version of Oracle and OS. Depending on the version there
> are a variety of ways:
> On commit, via a scheduled job, an OS service, etc.
Oracle 9i and higher
No special OS
search for ctx_ddl.sync_index() in the Oracle Text Reference.
In 11g, you can set up the synchronization up within the Create Index
command.
> search for ctx_ddl.sync_index() in the Oracle Text Reference.
> In 11g, you can set up the synchronization up within the Create Index
> command.
Thank you
> search for ctx_ddl.sync_index() in the Oracle Text Reference.
> In 11g, you can set up the synchronization up within the Create Index
> command.
>
As you can also in 10g.
--
jeremy