Grant permissions and then check the dba_col_privs table : System Privileges « User Previliege « Oracle PL / SQL






Grant permissions and then check the dba_col_privs table

 

grant references ( employee_id ),update( first_name,last_name,job_id,manager_id,department_id )
on hr.employees to scott;

select *
from dba_col_privs
/

 








Related examples in the same category

1.Common System Privileges
2.Grant create related permission