sys@ORCL> grant select on v$timer to test;

 grant select on v$timer to test                

 *

ERROR at line 1:

ORA-02030: can only select from fixed tables/views

 

分析:对以v$开头的视图,不能直接grant

v$开头的视图是v_$的同义词

如v$timer是v_$timer的同义词

sys@ORCL> grant select on v_$timer to test;

Grant succeeded.

相关文章:

  • 2022-12-23
  • 2022-01-18
  • 2022-01-09
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
  • 2022-12-23
  • 2021-07-12
猜你喜欢
  • 2021-07-11
  • 2022-12-23
  • 2021-12-24
  • 2022-01-07
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案