调试存储过程报权限不足:ORA-0131 Insufficient privileges.

在用plsql调试存储过程时报错:

ORA-0131:Insufficient privileges.

Note:Debugging requires the DEBUG CONNECT SESSION system privileges.   


报错原因,权限缺失: DEBUG CONNECT SESSION


登录系统账号sys/system赋权限:

SQL> grant  DEBUG CONNECT SESSION to user_name;


你可能感兴趣的:(oracle存储过程,ora-0131,调试报错,权限不足)