------------------------------------------------------------
-- Description: simple script to turn off tracing for an
-- Oracle session other than the current one.
--
-- Author: David Clement
-------------------------------------------------------------
begin
dbms_support.stop_trace_in_session (sid => &&sid,
serial# => &&serial);
end;
/