PL/SQL (MOSC)

MOSC Banner

Trouble using role grants with a procedure: ORA-00942: table or view does not exist

in PL/SQL (MOSC) 6 commentsAnswered

I'm using Oracle 19c and having trouble with a role grant to a procedure. It's as if the role grant has no effect. Below is a script which reproduces the problem. What am I missing? Best regards.

create user tsource identified by "Table Own3r";

grant create table to tsource;


create table tsource.t1 ( n integer );


create user tdest identified by "Table Us3r";

grant create procedure, create session to tdest;


create role tsource_role not identified;

grant select on tsource.t1 to tsource_role;


grant tsource_role to tdest with delegate option;

alter use tdest default role all;


select * from dba_tab_privs where grantee = 'TSOURCE_ROLE';

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center