Skip to content

Latest commit

 

History

History
82 lines (61 loc) · 4.13 KB

drop-search-property-list-transact-sql.md

File metadata and controls

82 lines (61 loc) · 4.13 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
DROP SEARCH PROPERTY LIST (Transact-SQL)
DROP SEARCH PROPERTY LIST (Transact-SQL)
WilliamDAssafMSFT
wiassaf
03/14/2017
sql
t-sql
reference
DROP_SEARCH_PROPERTY_LIST_TSQL
DROP SEARCH PROPERTY LIST
full-text search [SQL Server], search property lists
DROP SEARCH PROPERTY LIST statement
search property lists [SQL Server], dropping
search property lists [SQL Server], deleting
TSQL

DROP SEARCH PROPERTY LIST (Transact-SQL)

[!INCLUDE SQL Server]

Drops a property list from the current database if the search property list is currently not associated with any full-text index in the database.

Syntax

DROP SEARCH PROPERTY LIST property_list_name  
;  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

property_list_name
Is the name of the search property list to be dropped. property_list_name is an identifier.

To view the names of the existing property lists, use the sys.registered_search_property_lists catalog view, as follows:

SELECT name FROM sys.registered_search_property_lists;  

Remarks

You cannot drop a search property list from a database while the list is associated with any full-text index, and attempts to do so fail. To drop a search property list from a given full-text index, use the ALTER FULLTEXT INDEX statement, and specify the SET SEARCH PROPERTY LIST clause with either OFF or the name of another search property list.

To view the property lists on a server instance

To view the property lists associated with full-text indexes

To remove a property list from a full-text index

Permissions

Requires CONTROL permission on the search property list.

Note

The property list owner can grant CONTROL permissions on the list. By default, the user who creates a search property list is its owner. The owner can be changed by using the ALTER AUTHORIZATION[!INCLUDEtsql] statement.

Examples

The following example drops the JobCandidateProperties property list from the [!INCLUDE sssampledbobject-md] database.

DROP SEARCH PROPERTY LIST JobCandidateProperties;  
GO  

See Also

ALTER SEARCH PROPERTY LIST (Transact-SQL)
CREATE SEARCH PROPERTY LIST (Transact-SQL)
Search Document Properties with Search Property Lists
sys.registered_search_properties (Transact-SQL)
sys.registered_search_property_lists (Transact-SQL)
sys.registered_search_property_lists (Transact-SQL)