I\'ve been creating packages for Oracle db using PL/SQL and i\'m trying to find a good way to debug a PL/SQL package without using the \"put_line\" command, does anyone have som
To enable DEBUGING, Grant below privileges' and re-open TOAD. It always works for me.
GRANT ALTER SESSION TO ;
GRANT CREATE SESSION TO ;
GRANT EXECUTE ON DBMS_DEBUG to ;
GRANT ALTER ANY PROCEDURE TO ;
GRANT CREATE ANY PROCEDURE TO ;
GRANT DEBUG ANY PROCEDURE TO ;
GRANT DEBUG CONNECT SESSION TO ;