grant 操作硬解析

scan724發表於2020-12-16

grant 授權硬解析:


  1* select * from v$sysstat where name like '%parse%' and name like '%hard%'
SQL> /

STATISTIC# NAME                                  CLASS        VALUE    STAT_ID
---------- ---------------------------------------------------------------- ---------- ---------- ----------
       625 parse count (hard)                                64         1758  143509059
       
對錶進行grant 操作:

grant select on  test.test to hr;

SQL> /

STATISTIC# NAME                                  CLASS        VALUE    STAT_ID
---------- ---------------------------------------------------------------- ---------- ---------- ----------
       625 parse count (hard)                                64         1766  143509059
       
       
再次查詢select count(*) from test;


SQL> /

STATISTIC# NAME                                  CLASS        VALUE    STAT_ID
---------- ---------------------------------------------------------------- ---------- ---------- ----------
       625 parse count (hard)                                64         1767  143509059

相關文章