หน้า 1 จากทั้งหมด 1

วิธี debug pl sql บน toad

โพสต์แล้ว: 25/09/2017 5:19 pm
โดย jataz2
By default debugger is disabled in oracle 10/11g. The debug menu is grey out.

Resolution:
User need to have the ‘DEBUG CONNECT SESSION’ privilege granted. If not granted, the debugger icons will be disabled in the Procedure Editor.
Solution:
1. Grant debug any procedure to user_name;
2. Grant debug connect session to user_name;
3. GRANT EXECUTE ON DBMS_DEBUG to public;
( If DBMS_DEBUG is missing, Run it with SYS User)