Removes a break point
DEBUG REMOVE BREAK POINT <break_name>
break_name ::= identifier
The DEBUG REMOVE BREAK POINT statement removes a break point that was created by the DEBUG BREAK POINT statement. The break_name identifies the break point to remove and it must match the one specified by the DEBUG BREAK POINT statement.
Successful execution of this command removes a row from the ::DEBUG_BREAKS table.
Example
// Sets and removes a break point
DEBUG BREAK POINT 'CONN0001xxxx' STATEMENT 'STMT0001yyyy' AT 0 ID my_break;
DEBUG REMOVE BREAK POINT my_break;
See Also
DEBUG BREAK POINT