SQL> conn scott/tiger
已连接。
SQL> create view v_session
2 as
3 select * from v$session;
select * from v$session
*
ERROR 位于第 3 行:
ORA-01031: 权限不足
SQL> grant select on v$latch to scott;
grant select on v$latch to scott
*
ERROR 位于第 1 行:
ORA-02030: 只能从固定的表/视图查询
SQL> grant select on v_$statname to scott;
授权成功。
SQL> grant select on v_$mystat to scott;
授权成功。
SQL> conn scott/tiger
已连接。
SQL> conn / as sysdba
已连接。
SQL> grant select on v$latch to scott;
grant select on v$latch to scott
*
ERROR 位于第 1 行:
ORA-02030: 只能从固定的表/视图查询
SQL> grant select on v_$latch to scott;
授权成功。
SQL> conn scott/tiger
已连接。
SQL> create or replace view stats
2 as select 'STAT...' || a.name name, b.value
3 from v$statname a, v$mystat b
4 where a.statistic# = b.statistic#
5 union all
6 select 'LATCH.' || name, gets
7 from v$latch;
视图已建立。
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/593324/viewspace-376159/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/593324/viewspace-376159/
本文详细记录了在Oracle数据库中进行权限管理的过程,包括如何为用户Scott授予V$LATCH、V_$STATNAME和V_$MYSTAT等视图的SELECT权限,以及在获得相应权限后,如何创建用于统计信息收集的视图Stats2。通过具体SQL操作示例,展示了如何避免因权限不足导致的错误。
2123

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



