RE: Oracle tablespaces

To solve this easily in the meantime, make a public synonym for the
table.

Create or replace public synonym “MYTABLE” for “SCHEMA”.“MYTABLE”

And as long as any user in the system has access to the base table,
they’ll be able to pull data. (any user will be able to do “select *
from mytable” instead of "select * from schema.mytable)

A post was merged into an existing topic: Oracle tablespaces