DBA Data[Home] [Help]

PACKAGE: APPS.XLA_UTILITY_PROFILER_PKG

Source


1 PACKAGE xla_utility_profiler_pkg AUTHID CURRENT_USER AS
2 /* $Header: xlacmupr.pkh 120.1 2003/02/22 19:01:34 svjoshi ship $ */
3 /*======================================================================+
4 |             Copyright (c) 2000-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_utility_profiler_pkg                                           |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    XLA Utility profiler_Package                                       |
13 |                                                                       |
14 |    Debug/Profiler activities.                                         |
15 |                                                                       |
16 | HISTORY                                                               |
17 |    12-Jan-00 P. Labrevois    Created                                  |
18 |    08-Feb-01                 Created for XLA                          |
19 +=======================================================================*/
20 
21 
22 /*======================================================================+
23 |                                                                       |
24 |                                                                       |
25 |                                                                       |
26 |                                                                       |
27 |                                                                       |
28 |                                                                       |
29 |                                                                       |
30 |                                                                       |
31 |                                                                       |
32 |                                                                       |
33 |                                                                       |
34 |                                                                       |
35 |                                                                       |
36 |                                                                       |
37 |                                                                       |
38 |                                                                       |
39 |                                                                       |
40 |                                                                       |
41 |                                                                       |
42 |                                                                       |
43 | Profiler                                                              |
44 |                                                                       |
45 |                                                                       |
46 |                                                                       |
47 |                                                                       |
48 |                                                                       |
49 |                                                                       |
50 |                                                                       |
51 |                                                                       |
52 |                                                                       |
53 |                                                                       |
54 |                                                                       |
55 |                                                                       |
56 |                                                                       |
57 |                                                                       |
58 |                                                                       |
59 |                                                                       |
60 |                                                                       |
61 |                                                                       |
62 |                                                                       |
63 |                                                                       |
64 +======================================================================*/
65 
66 
67 /*======================================================================+
68 |                                                                       |
69 | Private Procedure                                                     |
70 |                                                                       |
71 | start_profiler                                                        |
72 |                                                                       |
73 | Activate the profiler.                                                |
74 |                                                                       |
75 +======================================================================*/
76 PROCEDURE start_profiler;
77 
78 
79 /*======================================================================+
80 |                                                                       |
81 | Private Procedure                                                     |
82 |                                                                       |
83 | Stop_profiler                                                         |
84 |                                                                       |
85 | Unactivate the profiler.                                              |
86 |                                                                       |
87 +======================================================================*/
88 PROCEDURE stop_profiler;
89 
90 
91 /*======================================================================+
92 |                                                                       |
93 | Private Procedure                                                     |
94 |                                                                       |
95 | dump_profiler_data                                                    |
96 |                                                                       |
97 | Print the information from the profiler                               |
98 |                                                                       |
99 +======================================================================*/
100 PROCEDURE  dump_profiler_data;
101 
102 END xla_utility_profiler_pkg;