DBA Data[Home] [Help]

PACKAGE: ORACLE_OCM.MGMT_CONFIG

Source


1 PACKAGE            MGMT_CONFIG AS
2 /*
3 Submit a job to collect the configuration.
4 Basically, a job with what->printCollectConfigMetrics(<collection directory>
5 */
6 procedure submit_job;
7 
8 /*
9 Runs the configuration collection job now.
10 */
11 procedure run_now;
12 
13 /*
14 Stop the job.
15 */
16 procedure stop_job;
17 
18 /*
19 Print the job details.
20 */
21 procedure print_job_details;
22 
23 /*
24 Config collection job
25 */
26 procedure collect_config;
27 
28 
29 /*
30 Statistics collection job
31 */
32 procedure collect_stats;
33 
34 END MGMT_CONFIG;