Granting Select access to all tables within a specific Database in MS SQL
If all your tables are in the dbo schema then this should work, you can just deny single tables if required
GRANT SELECT ON SCHEMA :: [dbo] TO myspecialrole
If all your tables are in the dbo schema then this should work, you can just deny single tables if required
GRANT SELECT ON SCHEMA :: [dbo] TO myspecialrole