The ENABLE_BREAKPOINT function enables a previously disabled breakpoint. That is, it reverses a previous disabling operation.
Syntax
DBMS_DEBUG.ENABLE_BREAKPOINT (
breakpoint IN BINARY_INTEGER)
RETURN BINARY_INTEGER;
Parameters
| Parameter |
Description |
| breakpoint |
The breakpoint number set by a previous call to SET_BREAKPOINT. |
Return values
| Return value |
Description |
| success |
The operation was successful. |
| error_no_such_breakpt |
The specified breakpoint does not exist. |
| error_idle_breakpt |
Cannot enable an unused breakpoint. |