DISABLE_QUERY_STATS
Disables gathering of query stats for the index.
Syntax
ctx_output.disable_query_stats(
index_name IN VARCHAR2
);
index_name
The name of the index on which query stats collection is to be disabled.
Example
Turn off gathering of query stats for the index myindex.
CTX_OUTPUT.DISABLE_QUERY_STATS(myindex);
Notes
Once the query stats is disabled for an index, gathering and storing query-related metadata is stopped for that index. All the entries corresponding to that index are cleared from the dictionary tables. An error is returned if you call this procedure on an index where query stats is not enabled.