Grant privilege to access all the objects from one schema to other
To grant privilege from one schema A to another Schema B
connect to schema A.
SQL> Grant Select any table to b;
SQL> Grant update any table to b;
or
SQL> Grant select any table, update any table, delete any table to b;
SQL> connect to schema B
SQL Select * from A.table_name;
there is no select any view privilege. the select any table privilege will automatically grant select privilege for views.
Note: The Grant select any table privilege is not object privilege, it is system privilege.
Tuesday, November 18, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment