Skip to content

PL/SQL Debugging

All created users have the necessary grants for PL/SQL debugging in VS Code SQL Developer:

  1. Compile your package for debug
  2. Set a breakpoint
  3. Start the debugger
  4. Use your local machine IP address

Get your local IP:

Terminal window
# macOS
ipconfig getifaddr en0
# Linux
hostname -I | awk '{print $1}'

Check out this video tutorial for a step-by-step guide on using the SQL Developer debugger with your local APEX development environment.