REMOVE_EVENT
Use this procedure to remove an event added through ctx_output.add_event.
Syntax
CTX_OUTPUT.REMOVE_EVENT(event in NUMBER);
event
Specify the type of index event to remove from the log. You can remove the following events:
-
CTX_OUTPUT.EVENT_INDEX_PRINT_ROWID, which logs the rowid of each row after it is indexed. This is useful for debugging a failed index operation. -
CTX_OUTPUT.EVENT_OPT_PRINT_TOKEN, which prints each token as it is being optimized. -
CTX_OUTPUT.EVENT_INDEX_PRINT_TOKEN, which prints the each token as it is being indexed.
Example
begin
CTX_OUTPUT.REMOVE_EVENT(CTX_OUTPUT.EVENT_INDEX_PRINT_ROWID);
end;