ORA-0131:Insufficient privileges. Note:Debugging requires the DEBUG CONNECT SESS

使用PL/SQL developer调试procedure时提示“ORA-0131:Insufficient privileges. Note:Debugging requires the DEBUG CONNECT SESSION system privileges”。

原因就是用户权限不够,要使用下面的命令来授权。

grant debug connect session to 用户;

 这样就OK了。

你可能感兴趣的:(privilege)