REVOKE Type Permissions (Transact-SQL)
Revokes permissions on a type.
REVOKE [ GRANT OPTION FOR ] permission [ ,...n ]
ON TYPE :: [ schema_name ].type_name
{ FROM | TO } <database_principal> [ ,...n ]
[ CASCADE ]
[ AS <database_principal> ]
<database_principal> ::= Database_user
| Database_role
| Application_role
| Database_user_mapped_to_Windows_User
| Database_user_mapped_to_Windows_Group
| Database_user_mapped_to_certificate
| Database_user_mapped_to_asymmetric_key
| Database_user_with_no_login
A type is a schema-level securable contained by the schema that is its parent in the permissions hierarchy.
Important |
|---|
GRANT, DENY, and REVOKE permissions do not apply to system types. User-defined types can be granted permissions. For more information about user-defined types, see Working with User-Defined Types in SQL Server. |
The most specific and limited permissions that can be revoked on a type are listed in the following table, together with the more general permissions that include them by implication.
Type permission | Implied by type permission | Implied by schema permission |
|---|---|---|
CONTROL | CONTROL | CONTROL |
EXECUTE | CONTROL | EXECUTE |
REFERENCES | CONTROL | REFERENCES |
TAKE OWNERSHIP | CONTROL | CONTROL |
VIEW DEFINITION | CONTROL | VIEW DEFINITION |
The following example revokes VIEW DEFINITION permission on the user-defined type PhoneNumber from the user KhalidR. The CASCADE option indicates that VIEW DEFINITION permission will also be revoked from principals to which KhalidR granted it. PhoneNumber is located in schema Telemarketing.
REVOKE VIEW DEFINITION ON TYPE::Telemarketing.PhoneNumber
FROM KhalidR CASCADE;
GO
