oracle - How can I check if a role has "grant references" on a given table? -


i've got table (myschema.mytable) want grant select , references role (myrole).

so, when logged on "sys sysdba", executed following:

grant select, references on myschema.mytable myrole; 

i can see grant permission when execute:

select * role_tab_privs role = 'myrole' 

however, doesn't seem show references privilege. need query see that?


Comments

Popular posts from this blog

c - ALSA programming: how to stop immediately -

c++ - How to add Crypto++ library to Qt project -