DB version: 11.2.0.4
User SCOTT has lots of tables in it. There is another user in the same DB called READ_USR .
This user already has read privileges on all tables in SCOTT schema. I want to dynamically generate following CREATE SYNONYM statements for all tables in Scott schema.
create synonym <synonymName> for scott.<tableName> ;
How can I do this ?