Method R Discussion Group

Method R helps developers, DBAs, and decision-makers optimize Oracle-based software in every phase of the software life cycle.

Discuss Method R products, techniques, and events.

Ask new questions or post your own responses.

Turning off the trace

I am able to turn on the trace, but once it's on, I can't turn it off:

 -- on
 begin
  hotsos.hotsos_ilo_task.set_config(true, true);
 end;

 -- not off
 begin
    hotsos.hotsos_ilo_task.set_config(false, true);
 end;

 -- not off
 begin
    hotsos.hotsos_ilo_task.set_config(false, false);
 end;

Is there any other way besides having the user disconnect?
--=Chuck
Chuck Forbes Send private email
Friday, January 11, 2008
 
 
Tracing should be turned off when the final HOTSOS_ILO_TASK.END_TASK is reached, or when the HTOSOS_ILO_TASKS.END_ALL_TASKS procedure is called. As the last step in these procedures, HOTSOS_SYSUTIL.TURN_TRACE_OFF is called, which calls either for 10g and later
dbms_monitor.session_trace_disable (NULL, NULL);
or for 9i and previous
dbms_support.stop_trace;
Ron Crisco Send private email
Monday, January 14, 2008
 
 

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics
 
Discussion Groups Main Page

Powered by FogBugz