The RESUME_PROFILER procedure resumes the performance profiler.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this feature.
Syntax
DBMS_PROFILER.RESUME_PROFILER
RETURN BINARY_INTEGER;
DBMS_PROFILER.RESUME_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 RESUME_PROFILER procedure.
Example
Execute the following statement to resume the performance profiler.
obclient> call DBMS_PROFILER.resume_profiler();
Query OK, 0 rows affected (0.001 sec)
