You can add conditions to breakpoints to instruct the debugger to interrupt execution at that breakpoint only when a certain condition or count is satisfied. For procedures and triggers, it must be a SQL search condition.
For example, to make a breakpoint apply to a specific connection only, set a condition on the breakpoint.
From the Debug menu, choose Breakpoints.
The Breakpoints dialog appears.
Select the breakpoint you want to edit and then click Edit.
The Edit Breakpoint dialog appears.
Enter a condition in the Condition field.
For example, to set the breakpoint so that it applies only to connections from a specific user ID, enter the following condition:
CURRENT USER='user-name'
In this condition, user-name is the user ID for which the breakpoint is to be active.