Select from following answers:- All users do not need permissions to write to tables.

- All users do not need permissions to read from tables.
- The application should use SQL Server logons to access the database.
- All Above
Users do not need write permission to tables because updates are performed by stored procedures, not directly. This is a violation of the principle of least privilege.
Users do need read permissions to tables. The application will not function correctly if these permissions are not granted. This is not a violation of the principle of least privilege.
Users do need execute permission to stored procedures. The application will not function correctly if these permissions are not granted. This is not a violation of the principle of least privilege.
Show Correct Answer
Source: Measureup.com | |
Alert Moderator