Without using GRANT SELECT ANY TABLE, how would I grant access to all tables from only one schema.
Example: There are three users. u1, u2, u3. u1 need access to all the tables that u2 has but doesn't need access to tables that u3 has. I could loop through all the tables and grant them individually. But what about new tables that u2 creates later. u1 needs those tables too.
How could I automatically grant those new tables as well?