Use the following keyboard shortcuts while debugging T-SQL database objects and SQL scripts.
| Name | Keyboard shortcuts | Description | Where it is used |
|---|---|---|---|
| Breakpoints | Ctrl+Alt, B | Opens the Breakpoints pane. | Global |
| Call Stack | Ctrl+Alt, C | Opens the Call Stack pane. | Global when starting a debugging session |
| Watches | Ctrl+Alt+W, 1 | Opens the Watches pane. | Global when starting a debugging session |
| Delete All Breakpoints | Ctrl+Shift+F9 | Deletes all breakpoints. | Global when starting a debugging session |
| Delete | Delete | Deletes the breakpoint selected in the Breakpoints pane. | Global when starting a debugging session |
| Toggle Breakpoint | F9 | Turns on or turns off a breakpoint depending on its current state. | SQL document T-SQL database objects |
| Start | Alt+F5 | Starts a debugging session. | SQL document T-SQL database objects |
| Continue | Alt+F5 | Continues a debugging session. | SQL document T-SQL database objects |
| Stop | Shift+F5 | Stops a debugging session. | Global when starting a debugging session |
| Restart | Ctrl+Shift+F5 | Restarts a debugging session. | Global when starting a debugging session |
| Break All | Ctrl+Alt+Pause | Pauses a debugging session. | Global when starting a debugging session |
| Step Into | F11 | Steps into the next statement. | SQL document Stored procedure Function Global when starting a debugging session |
| Step Over | F10 | Steps over the next statement. | SQL document Stored procedure Function Global when starting a debugging session |
| Step Out | Shift+F11 | Steps out of a stored procedure, function, or trigger. | Global when starting a debugging session |
| Execute Entire Script | F5 | Executes an entire script. | SQL document Stored procedure Function Global when starting a debugging session |