Hi,
I have created a new user in oracle database as follows

create new user u1 identified by u1;
grant create session to u1;

when I login with new user ,it has access to all tables in other schema except system and sys tables.
i want to create a user who does not have access to any table on any schema.
how it can be achieved?

Thanks