How to grant users read-only access to all databases

后端 未结 3 466
野的像风
野的像风 2021-01-11 11:05

I want a group of users to have read-only access to all tables and views on all databases on SQL Server (I\'m using SS2008). I\'d like those users to have read-only access t

3条回答
  •  萌比男神i
    2021-01-11 11:32

    You should just be able to add the users to the db_datareader database role in each of the databases. You could write a script to loop through the databases and do it for you.

提交回复
热议问题