PLSQL Developer报"动态执行表不可访问,本会话的自动统计被禁止"错的解决方法
1.在command window窗口中,给特定用户授权:
grant select on V_$session to 用户;
grant select on V_$sesstat to 用户;
grant select on V_$statname to 用户;
2.在command window窗口中,将查询视图权限授权给public用户:
grant select on v_$statname to public;
grant select on v_$session to public;
grant select on v_$sesstat to public;
3.Tools(工具)-->Preferences(首选项)-->options(oracle->选项)->automatic statistics(自动统计),将小勾去掉。
原文地址:http://blog.csdn.net/vvipxwj/article/details/7438527

浙公网安备 33010602011771号