How would I deny Select statements on all my tables for all users? I can use DENY SELECT 'tablename' but it only applies to non-administrators. For security reasons, I only want a user to be able to access the data via the front end application.
I am using Windows authentication.
Essentially, I don't want to expose any of the raw data or structures of the database. I have encrypted all the stored procedures. Allowing access to Views is ok since this is what the front end app uses to view the data.
Thanks!
I am using Windows authentication.
Essentially, I don't want to expose any of the raw data or structures of the database. I have encrypted all the stored procedures. Allowing access to Views is ok since this is what the front end app uses to view the data.
Thanks!