Question

Let's say we've logged on under the A schema.

I am able to execute the following statement

grant select on wph_pden to LANDING_R;

However, the LANDING_R object can not be located in the schema A. It is absent from all the system tables and views.

How do I find out which schema owns the LANDING_R (which I know is a role, not user)???

Was it helpful?

Solution

Have you tried searching for role as SYSDBA? You can list all the roles existing in the database with DBA_ROLES or DBA_TAB_PRIVS

select grantee from dba_role_privs where granted_role='LANDING_R'
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top