I have 3 tables table1,table2,table3. I want to grant(select for example) these tables to a user, user1.
I know that I can grant with:
grant select
my suggestion is...create role in oracle using
create role ;
then assign privileges to that role using
grant select on to ;
then assign that group of privileges via that role to any user by using
grant to ...;