END_QUERY_LOG

Use this procedure to stop logging queries into the database trace files.

Syntax

ctx_output.end_query_log;

Example

begin
CTX_OUTPUT.START_QUERY_LOG('mylog1');
     < get queries >
CTX_OUTPUT.END_QUERY_LOG;
end;