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
add the user to the db_datareader role
db_datareader
example
exec sp_addrolemember 'db_datareader',YourLogin
Info about db_datareader: http://msdn.microsoft.com/en-us/library/ms188629(SQL.90).aspx