DBA Data[Home] [Help]

PACKAGE: SYS.DBMS_SERVER_TRACE

Source


1 PACKAGE dbms_server_trace AS
2 
3   -- convert_binary_trace_file
4   -- This procedure converts all trace data for the specified
5   -- input file from binary to text format and output to
6   -- a specified output file
7   --
8   -- Input arguments:
9   --   infile  - input file with binary trace data
10   --   outfile - output file for converted text traces
11   --   fmode   - TRUE for default format, FALSE for user-defined format
12 
13   PROCEDURE convert_binary_trace_file(infile  IN VARCHAR2,
14                                       outfile IN VARCHAR2,
15                                       fmode   IN BOOLEAN
16                                      );
17 
18 END;