The STOP_PROFILE procedure is used to stop the profiler.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this feature.
Syntax
DBMS_PROFILER.STOP_PROFILER
RETURN BINARY_INTEGER;
DBMS_PROFILER.STOP_PROFILER;
Note
RETURN BINARY_INTEGER specifies the return data type as a binary integer. In practice, you typically do not need to explicitly declare RETURN BINARY_INTEGER; instead, you can directly call the STOP_PROFILER procedure.
Example
Execute the following command to stop the profiler.
obclient> call DBMS_PROFILER.stop_profiler();
Query OK, 0 rows affected (1.238 sec)
