I have a user who has many tables against their account. Lets say UserA. I can do SELECT * FROM TABLE , and everything is fine. If I log in as another UserB user, but make a read-only connection for this user, I cannot access the table, I must use SELECT * FROM UserA.TABLE
Is there a way in Oracle somewhere to allow UserB to access UserA tables without having to prefix the user with the table name?
source share