PL/SQL Debugging
Every user that create-user creates has the grants for PL/SQL debugging in VS Code SQL Developer. Debug a package with these steps:
- Compile the package for debug.
- Set a breakpoint.
- Start the debugger.
- Enter the IP address of your machine when the debugger asks for it.
Get the IP address of your machine:
# macOSipconfig getifaddr en0
# Linuxhostname -I | awk '{print $1}'Tutorial
Section titled “Tutorial”Watch this video tutorial. It shows every step of a debug session in this environment.