转载:http://blog.csdn.net/miyatang/article/details/5963980
刚新建立的用户,在添加表时,出现以下错误:
Dynamic Performance Tables not accessible,
Automatic Statistics Disabled for this session
You can disable statistics in the preference menu,or obtanin select
priviliges on the v$session,v$sesstat and v$statname tables
处理办法:
增加权限:“select any dictionary”
用dba执行下面这句或者在pl/sql中找到username,然后在edit中选择“System privileges”tab,增加一个“select any dictionary”权限。 grant SELECT ANYDICTIONARY to username;
“select any dictionary” 说明:
允许查看sys用户所拥有的数据字典表
本文解决新建用户在添加表时遇到的DynamicPerformanceTablesnotaccessible及AutomaticStatisticsDisabled错误,通过增加权限“selectanydictionary”来解决。

2022

被折叠的 条评论
为什么被折叠?



