The topic describes the DF013 T-SQL code analysis rule.
DEPRECATED
The ALL option in the GRANT/DENY/REVOKE statement is deprecated.
It is not recommended to use the GRANT, DENY, and REVOKE statements with the ALL option. This option is deprecated and maintained only for backward compatibility. It does not grant/deny/revoke all possible permissions.
GRANT ALL ON dbo.Customers TO Mary
GO
GRANT INSERT,UPDATE,DELETE ON dbo.Customers TO Mary
GO