142.4.7 DISABLE_SERVICE_OPTION Procedure

The DISABLE_SERVICE_OPTION procedure disables the specified services options.

Syntax

DBMS_OBSERVABILITY.DISABLE_SERVICE_OPTION( option_id IN BINARY_INTEGER DEFAULT all_options );

Parameters

Table 142-13 DISABLE_SERVICE_OPTION Procedure Parameters

Parameter Description

option_id

Specifies the service option or options to disable

Usage Notes

The CDB is a global reference for service availability, that is, the PDBs will only be able to use a service enabled both on the current container and at the CDB.

Examples

The following example illustrates how to disable capturing traces:
SQL> execute dbms_observability.disable_service_option( option_id => dbms_observability.capture_traces );
The following example illustrates how to disable all service options:
SQL> execute dbms_observability.disable_service_option( option_id => dbms_observability.all_options );