SQL Server error messages can sometimes be misleading. One example is the error returned when trying to GRANT permissions without holding appropriate permissions yourself. Read on to see how to deal with this and other ambiguous error messages.
GRANT ALL PRIVILEGES suggest it will grant all applicable privileges on a securable to a principal. However, in most RDBMSs including SQL Server this is not actually the case. In addition, this feature has been deprecated. Read on to get all the details.
Column level permissions allow us even more fine-grained control over data access privileges. A simple extension to the GRANT statement makes this possible. Read on to get all the details.
Permission delegation does not work with database and server roles as you would expect. Instead of an automatic permission cascade, every role member needs to take additional actions to delegate successfully. Read on to get all the details.
Granting a permission to a user normally does not enable that user to pass the permission on. However the WITH GRANT OPTION extension to the GRANT statement enables just that. Read on to get all the details.