在使用plsql Developer出現如下錯誤:
<a target="_blank" href="http://blog.51cto.com/attachment/201103/100850784.jpg"></a>
報錯資訊中描述的非常詳細,原因是動态性能表沒有權利被通路導緻的問題,是以,我們通過把所需通路權限賦予給具體使用者的方法來解決這個問題,處理方法網上有很多,記錄一下自己用過的解決辦法:
1.用系統使用者登入oracle,在cmd界面中輸入:
SQL> conn scott/tiger as sysdba;
2.對目前使用者myOracle進行授權:
SQL> grant select on V_$session to myOracle;
SQL> grant select on V_$sesstat to myOracle;
SQL> grant select on V_$statname to myOracle;
3.重新登入plsql Developer。
本文轉自 韬光星夜 51CTO部落格,原文連結:http://blog.51cto.com/xfqxj/518409,如需轉載請自行聯系原作者