If I have a table sch1.tab1
is it possible to call it from schema/user sch2
just with
select * from tab1
(assume that we have all the privilegies)?
I am aware that in postgresql you can set the search path where db would look for tables which enables you to omit the schema when you are referencing a table but I do not know if this exists in oracle.
Thank you.