PL/SQL Developer动态执行表不可访问,本会话的自动统计被禁止
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PL/SQL Developer动态执行表不可访问,本会话的自动统计被禁止相关的知识,希望对你有一定的参考价值。
在执行菜单里你可以禁止统计,或在v_$session,v_$sesstat 和 v_$statname 表里获得select权限
解决办法
[[email protected] ~]$ sqlplus sys/Manager123 as sysdba
SQL> grant select on v_$statname to zheng;
SQL> grant select on v_$sesstat to zheng;
SQL> grant select on v_$session to zheng;
SQL> grant select on v_$mystat to zheng;
如果需要收回
SQL> revoke select on v_$[动态表] from zheng;
Revoke succeeded.
以上是关于PL/SQL Developer动态执行表不可访问,本会话的自动统计被禁止的主要内容,如果未能解决你的问题,请参考以下文章
PLSQL Developer报“动态执行表不可访问,本会话的自动统计被禁止”的解决方案