I am trying to debug a stored procedure using Oracle SQL Developer. The database is in another window. I granted privileges with
GRANT debug any procedure, debug connect session TO <user>;
I set a breakpoint inside the procedure on one of the destination lines. I also tried other places out of despair. When I click debug, I get a debug dialog and fill in all the values. When I delete debug, the stored procedure is executed, the debug controls instantly flash across the screen, and then end and end. He misses all the breakpoints, as if he wasn't even there. Any ideas?
source
share