--- title: "REVOKE Search Property List Permissions" description: Revoke permissions on a search property list. titleSuffix: SQL Server (Transact-SQL) ms.custom: "seo-lt-2019" ms.date: "06/10/2016" ms.prod: sql ms.prod_service: "sql-database" ms.reviewer: "" ms.technology: t-sql ms.topic: "language-reference" dev_langs: - "TSQL" helpviewer_keywords: - "full-text search [SQL Server], permissions" - "search property lists [SQL Server], permissions" - "revoking permissions [SQL Server]" - "REVOKE statement, search property list permissions" ms.assetid: a6b8b37c-0015-4596-898c-51a567659e2e author: VanMSFT ms.author: vanto --- # REVOKE Search Property List Permissions (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Revokes permissions on a search property list. ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## Syntax ``` REVOKE [ GRANT OPTION FOR ] permission [ ,...n ] ON SEARCH PROPERTY LIST :: search_property_list_name { TO | FROM } database_principal [ ,...n ] [ CASCADE ] [ AS revoking_principal ] ``` ## Arguments GRANT OPTION FOR Indicates that the right to grant the specified permission to other principals will be revoked. The permission itself will not be revoked. > [!IMPORTANT] > If the principal has the specified permission without the GRANT option, the permission itself will be revoked. *permission* Is the name of a permission. The valid mappings of permissions to securables are described in the "Remarks" section, later in this topic. ON SEARCH PROPERTY LIST **::**_search_property_list_name_ Specifies the search property list on which the permission is being revoked. The scope qualifier **::** is required. *database_principal* Specifies the principal from which the permission is being revoked. The principal can be one of the following: - database user - database role - application role - database user mapped to a Windows login - database user mapped to a Windows group - database user mapped to a certificate - database user mapped to an asymmetric key - database user not mapped to a server principal. CASCADE Indicates that the permission being revoked is also revoked from other principals to which it has been granted by this principal. > [!CAUTION] > A cascaded revocation of a permission granted WITH GRANT OPTION will revoke both GRANT and DENY of that permission. AS *revoking_principal* Specifies a principal from which the principal executing this query derives its right to revoke the permission. The principal can be one of the following: - database user - database role - application role - database user mapped to a Windows login - database user mapped to a Windows group - database user mapped to a certificate - database user mapped to an asymmetric key - database user not mapped to a server principal. ## Remarks ## SEARCH PROPERTY LIST Permissions A search property list is a database-level securable contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be revoked on a search property list are listed in the following, together with the more general permissions that include them by implication. |Search property list permission|Implied by search property list permission|Implied by database permission| |-------------------------------------|------------------------------------------------|------------------------------------| |ALTER|CONTROL|ALTER ANY FULLTEXT CATALOG| |CONTROL|CONTROL|CONTROL| |REFERENCES|CONTROL|REFERENCES| |TAKE OWNERSHIP|CONTROL|CONTROL| |VIEW DEFINITION|CONTROL|VIEW DEFINITION| ## Permissions Requires CONTROL permission on the full-text catalog. ## See Also [CREATE APPLICATION ROLE (Transact-SQL)](../../t-sql/statements/create-application-role-transact-sql.md) [CREATE ASYMMETRIC KEY (Transact-SQL)](../../t-sql/statements/create-asymmetric-key-transact-sql.md) [CREATE CERTIFICATE (Transact-SQL)](../../t-sql/statements/create-certificate-transact-sql.md) [CREATE SEARCH PROPERTY LIST (Transact-SQL)](../../t-sql/statements/create-search-property-list-transact-sql.md) [DENY Search Property List Permissions (Transact-SQL)](../../t-sql/statements/deny-search-property-list-permissions-transact-sql.md) [Encryption Hierarchy](../../relational-databases/security/encryption/encryption-hierarchy.md) [sys.fn_my_permissions (Transact-SQL)](../../relational-databases/system-functions/sys-fn-my-permissions-transact-sql.md) [GRANT Search Property List Permissions (Transact-SQL)](../../t-sql/statements/grant-search-property-list-permissions-transact-sql.md) [HAS_PERMS_BY_NAME (Transact-SQL)](../../t-sql/functions/has-perms-by-name-transact-sql.md) [Principals (Database Engine)](../../relational-databases/security/authentication-access/principals-database-engine.md) [REVOKE (Transact-SQL)](../../t-sql/statements/revoke-transact-sql.md) [sys.fn_builtin_permissions (Transact-SQL)](../../relational-databases/system-functions/sys-fn-builtin-permissions-transact-sql.md) [sys.registered_search_property_lists (Transact-SQL)](../../relational-databases/system-catalog-views/sys-registered-search-property-lists-transact-sql.md) [Search Document Properties with Search Property Lists](../../relational-databases/search/search-document-properties-with-search-property-lists.md) [Search Document Properties with Search Property Lists](../../relational-databases/search/search-document-properties-with-search-property-lists.md)