sql - How to make a role from schema A "grantable" in schema B -


There are two schemas in the same database: A and B is the role A_ROLE in schema A, to grant A_ROLE to Schema B (So ​​users with A_ROLE were able to query tables from Schema B)

Is this possible? If so, how does it?

As far as I know, the role in Oracle is a non-schema object, so a schema

But if you mean that the role A_ROLE in User A and it wants to grant the object from Schema B, you can use the following statement as an example Are:

Choose from GRANT BT_able1 to A_ROLE;

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -