PL/SQL Developer中,存储过程无法调试的问题解决办法

在Oracle10中新建了一个用户,然后编写存储过程在PL/SQL Developer中调试,提示

ORA-0131: Insufficient privileges.
Note: Debugging requires the DEBUG CONNECT SESSION system privilege.

用管理员帐号登录后,执行

grant Debug Connect Session to sky_test;

命令后,再进行调试,一切OK。

 

你可能感兴趣的:(oracle,session,System,存储,debugging)