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
Post a Comment