Skip to content

Latest commit

 

History

History
62 lines (49 loc) · 2.33 KB

drop-fulltext-stoplist-transact-sql.md

File metadata and controls

62 lines (49 loc) · 2.33 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
DROP FULLTEXT STOPLIST (Transact-SQL)
DROP FULLTEXT STOPLIST (Transact-SQL)
WilliamDAssafMSFT
wiassaf
03/14/2017
sql
t-sql
reference
DROP_FULLTEXT_STOPLIST_TSQL
DROP FULLTEXT STOPLIST
DROP FULLTEXT STOPLIST statement
stoplists [full-text search]
full-text search [SQL Server], stoplists
full-text search [SQL Server], stopwords
stopwords [full-text search]
TSQL

DROP FULLTEXT STOPLIST (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

Drops a full-text stoplist from the database in [!INCLUDEssNoVersion].

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Important

CREATE FULLTEXT STOPLIST is supported only for compatibility level 100 and higher. For compatibility levels 80 and 90, the system stoplist is always assigned to the database.

Syntax

DROP FULLTEXT STOPLIST stoplist_name  
;  

Arguments

stoplist_name
Is the name of the full-text stoplist to drop from the database.

Remarks

DROP FULLTEXT STOPLIST fails if any full-text indexes refer to the full-text stoplist being dropped.

Permissions

To drop a stoplist requires having DROP permission on the stoplist or membership in the db_owner or db_ddladmin fixed database roles.

Examples

The following example drops a full-text stoplist named myStoplist.

DROP FULLTEXT STOPLIST myStoplist;  

See Also

ALTER FULLTEXT STOPLIST (Transact-SQL)
CREATE FULLTEXT STOPLIST (Transact-SQL)
sys.fulltext_stoplists (Transact-SQL)
sys.fulltext_stopwords (Transact-SQL)