分类: Oracle
2011-02-28 14:22:48
直接将访问动态数据库的权限赋给普通用户,将会报错
SQL> grant select V$timer to thomas;
grant select V$timer to thomas
*
ERROR at line 1:
ORA-00990: missing or invalid privilege
因为v$和v_$是同义词,所以使用v_$就没有问题了
SQL> grant select V_$timer to thomas;