出现这样的原因是该用户没有相关权限。
解决方法:
- 去除软件层面设置


2.给该用户赋权限。
解决办法二:依据提示给定用户授权或者所有用户权限。
grant select on V_session to user;
grant select on V_$sesstat to user;
grant select on V_$statname to user;
给公用所有用户授权
grant select on V_$session to public;
grant select on V_$sesstat to public;
grant select on V_$statname to public;