MarcusRangel
Member²
Hello,
We have recently upgraded to the latest PL/SQL Developer version and one of the new features is giving us a hard time. As you can see in the screenshots, the attempt to execute SQL in a debug session is crashing because some privilege is missing. The user has "debug any procedure" and "debug connect session". I found the code below in an old post here, and it also runs normally. The problem happens in both 11g and 12c. If I grant DBA to the user, it works. What are we missing?
declare
debug_session_id varchar2(100);
begin
debug_session_id := sys.dbms_debug.initialize;
sys.dbms_debug.debug_on;
end;
We have recently upgraded to the latest PL/SQL Developer version and one of the new features is giving us a hard time. As you can see in the screenshots, the attempt to execute SQL in a debug session is crashing because some privilege is missing. The user has "debug any procedure" and "debug connect session". I found the code below in an old post here, and it also runs normally. The problem happens in both 11g and 12c. If I grant DBA to the user, it works. What are we missing?
declare
debug_session_id varchar2(100);
begin
debug_session_id := sys.dbms_debug.initialize;
sys.dbms_debug.debug_on;
end;

