In oracle, how can i give grant to 'A' user to access 'B' schema?
Also, Is it possible to give, 'SELECT, EXECUTE AND VIEW' grant to A user on B schema?
In oracle, how can i give grant to 'A' user to access 'B' schema?
Also, Is it possible to give, 'SELECT, EXECUTE AND VIEW' grant to A user on B schema?
SELECT 'GRANT ALL ON '||table_name||' TO BOB;'
FROM ALL_TABLES
WHERE OWNER = 'ALICE';