The user I have should have access to all tables in a database - SELECT, INSERT, UPDATE, DELETE and EXECUTE (ASP code to blame :-P) except for 1 table e.g. users
.
When granting db_datareader
and db_datawriter
this gives them full access to everything and removing the DELETE permission on the users
table will not work.
There are over 60 tables and was looking for a quicker way than using SSMS to go through every table and do this.
How would I go about doing this?