web-dev-qa-db-ja.com

ORA-0131:権限が不十分ですDEBUG CONNECT SESSION

PL/SQL Developerを使用してPL/SQLスクリプトのデバッグを開始しようとすると、このエラーメッセージ「ORA-0131:権限が不十分ですDEBUG CONNECT SESSION」が表示されました。

Oracle Database 11gリリース11.1.0.7.0

私は管理者グループの一部です。この特権は必要ですか?

grant DEBUG CONNECT SESSION to =<bobens_83-here_goes_your_db-username>
6
user4420255

あなたが述べたように、特権の問題。

これから引用 サイト

ORA-01031: insufficient privileges 

 Cause: An attempt was made to change the current username or password
 without the appropriate privilege. This error also occurs if attempting to
 install a database without the necessary operating system privileges. 
 When Trusted Oracle is configure in DBMS MAC, this error may occur if
 the user was granted the necessary privilege at a higher label than the  
 current login. 

Action: Ask the database administrator to perform the operation or grant
the required privileges. For Trusted Oracle users getting this error 
although granted the appropriate privilege at a higher label, ask the 
database administrator to re-grant the privilege at the appropriate label. 

あなたがデバッグに取り組んでいればそれはうまくいくはずです

grant DEBUG CONNECT SESSION to <bobens_83-here_goes_your_db-username>
11
Moudiz