DROP FULLTEXT STOPLIST (Transact-SQL)
Drops a full-text stoplist from the database.
Transact-SQL Syntax Conventions
Important
CREATE FULLTEXT STOPLIST is supported only for compatibility level 100. 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
Requires CONTROL permission on the stoplist.
Note
The stoplist owner can grant CONTROL permission on the list. By default, the user who creates a stoplist is its owner. The owner can be changed by using the ALTER AUTHORIZATIONTransact-SQL statement.
Examples
The following example drops a full-text stoplist named myStoplist.
DROP FULLTEXT STOPLIST myStoplist;
See Also
Reference
Change History
Updated content |
---|
Corrected permissions. |