9

I am trying to debug a procedure using PL/SQL developer's built-in debugger.

After stepping over the BEGIN, when the debugger is over the actual procedure call, the "step-into" button will just execute the procedure without entering it.

Any suggestions would be appreciated.

Nico Mezeret
  • 193
  • 1
  • 1
  • 7
  • 5
    1) The procedure (or the package containing the procedure) might not be compiled with debug info 2) the user running the debugger is not the owner of the package/procedure (you need the "debug any procedure" privilege to debug procedures you don't own) – Carlo Sirna Apr 07 '16 at 17:00

1 Answers1

13

Try adding debug information like @Carlo Sima mentioned.

Like this:

Add debug information

Marco
  • 1,279
  • 1
  • 15
  • 26
  • is it possible to add debug information on multiple packages? – Aravind Mar 12 '21 at 04:58
  • Haven't seen anything like this in Pl/SQL's user guide. We could presume that just by Left Ctrl + selecting all objects could do the job, but I guess you've already tried that. – Marco Mar 29 '21 at 03:00