How to grant complete database access to an user as read only...?

Questions by guddasantu

Showing Answers 1 - 15 of 15 Answers

amit

  • May 1st, 2007
 

Using grant command in sql we can grant complete database access to an user to read as follows

Grant read
on tablename
to username;

  Was this answer useful?  Yes

By using following SQL Command you can grant read only privillege to your user on whole database.

SQL > grant select any table to user_name;

and dont grant any other privilege to that user.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions