Dynamic Performance Tables not accessible, Automatic Statistics Disabled for this session 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
第一种处理方法(不推荐)
就是在报错的Error对话框中将“Don't show this message again” 选项选中,下次就步骤提示这个错误了。
这种方法应该可以叫做“鸵鸟式”的处理方法。没有从根本上解决这个问题。
第二种处理方法(可以采纳)
报错信息中描述的非常详细,原因是动态性能表没有权利被访问导致的问题,因此,我们通过把所有需要访问权限赋予给具体用户的方法来解决这个问题。
这里给出我能想到的三种具体的处理方法。大家可以继续补充。
1、如果只是某一具体用法有权限查询这三个动态性能试图,可以如下进行操作
注意一下:我们授权的试图是V_$session 不是V$session, 因为V$session 是同名不是具体的试图。否则您会收到下面这个错误。
10g>grant select on V$session to user_sec;
grant select on V$session to user_sec
ERROR at line 1:
ORA-02030:can only select from fixed tables/views
正确的授权方法如下:
SQL>grant select on V_$session to user_sec;
SQL>grant select on V_$sesstat to user_sec;
SQL>grant select on V_$statname to user_sec;
2、可以使用下面这个“简单粗暴”的方法处理之。
SQL>grant select ANY DICTIONARY to user_sec;
3、以上两种方法是针对特定用户的处理方法,如果想让所有用户(不局限在什么的user_sec用户)都能够查询这三个动态性能试图,可以通过将查询权限给public方法来实现,操作如下。这样就可以保证所有开发人员都不会再出现上述的报错信息了。
SQL>grant select on V_$session to public;
SQL>grant select on V_$sesstat to public;
SQL>grant select on V_$statname to public;
第三种方法(推荐)
彻底禁掉PL/SQL Developer 的这个功能。
方法如下:
导航到Tools --->Preferences --->Options
找到“Automatic Statistics” 选项,将其前面的小对勾去掉,然后点击“Apply”
和“OK”保存退出。
解决方法如下:
grant SELECT ANY DICTIONARY TO username;
因为v$开头的属于数据字典,通常称为动态性能试图。
解决方法是:
用dba执行项目这句或者在pl/sql中找到username,然后在edit中选择“System privileges”tab,增加一个“select any dictionary”权限。
grant SELECT ANY DICTIONARY to username;
分享到:
相关推荐
This fully updated edition of Statistics for Research explains statistical concepts in a straight-forward and accessible way using practical examples from a variety of disciplines. If you're looking ...
Log File Not Accessible(解决方案).md
Practical Statistics for Data Scientists: 50 Essential Concepts by Peter Bruce, Andrew Bruce English | ISBN: 1491952962 | 2016 A key component of data science is statistics and machine learning, ...
This book is ideal for a one-semester course in statistics, offering a streamlined presentation of Introductory Statistics: Exploring the World through Data, by Gould/Ryan. Exploring the World through...
Featuring guidance through a range of techniques and tools essential to modern mobile development, this accessible guide will make sure you’re delivering a seamless and intuitive experience for your...
在这个例子中,我们关注的是如何在易语言中调用`Accessible`接口,这是一种用于获取Windows应用程序中控件信息的技术,通常用于无障碍访问或者自动化测试。 `AccessibleObjectFromWindow`函数是Windows API中的一...
在IT领域,特别是软件开发和自动化测试中,`Accessible接口`是一个重要的概念,它主要用于获取和操作用户界面(UI)元素。这个接口是无障碍技术( Accessibility Technology)的一部分,旨在帮助残障人士通过辅助...
Microsoft Expression Studio Ultimate 4 English DreamSpark 版本,无需Key
CSA ASC B651-2023 Accessible design for the built environment
"Automatic Tool for Accessible Web-开源" 这个标题表明我们要讨论的是一款专注于提升网页可访问性的自动化工具,而且是开源的。这意味着它的源代码对公众开放,允许用户查看、修改和分发,这通常促进了社区协作和...
Accessible.tlb
在本文中,我们将深入探讨如何利用易语言结合“Accessible接口”来获取QQ窗口的相关信息。这个过程涉及到Windows API调用、对象模型理解和事件处理等多个方面的知识。 首先,Accessible接口是微软Windows操作系统...
This book fills the need for a concise and conversational book on the growing field of Data Analytics and Big Data. Easy to read and informative, this lucid book covers everything important, with ...
Programming for Computations – MATLAB/Octave: A Gentle Introduction to ... The emphasis is on generic algorithms, clean design of programs, use of functions, and automatic tests for verification.
Vue.js Up and Running_ Building Accessible and Performant Web Apps (2018, Media)
《Vue.js Up & Running: Building Accessible and Performant Web Apps》是一本专注于使用Vue.js框架构建可访问且高性能Web应用的指南。Vue.js是目前非常流行的前端JavaScript框架,以其轻量级、易学易用和灵活性...
Written in an accessible style and including handy checklists and exercises, Writing for Computer Science is not only an introduction to the doing and describing of research, but is a valuable ...
这通常在创建一个Dynamic Web Project时由Eclipse自动配置,但如果你需要手动添加,可以将此jar包导入到项目的WEB-INF/lib目录下。 至于其他可能包含的jar包,虽然没有明确列出具体文件名,但根据描述,我们可以...