Skip to content

Latest commit

 

History

History
61 lines (49 loc) · 2.17 KB

drop-fulltext-index-transact-sql.md

File metadata and controls

61 lines (49 loc) · 2.17 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
DROP FULLTEXT INDEX (Transact-SQL)
DROP FULLTEXT INDEX (Transact-SQL)
WilliamDAssafMSFT
wiassaf
03/03/2017
sql
t-sql
reference
DROP_FULLTEXT_INDEX_TSQL
DROP FULLTEXT INDEX
deleting full-text indexes
removing full-text indexes
full-text indexes [SQL Server], removing
DROP FULLTEXT INDEX statement
dropping full-text indexes
TSQL

DROP FULLTEXT INDEX (Transact-SQL)

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

Removes a full-text index from a specified table or indexed view.

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

Syntax

DROP FULLTEXT INDEX ON table_name  

Arguments

table_name
Is the name of the table or indexed view containing the full-text index to be removed.

Remarks

You do not need to drop all columns from the full-text index before using the DROP FULLTEXT INDEX command.

Permissions

The user must have ALTER permission on the table or indexed view, or be a member of the sysadmin fixed server role, or db_owner or db_ddladmin fixed database roles.

Examples

The following example drops the full-text index that exists on the JobCandidate table.

USE AdventureWorks2022;  
GO  
DROP FULLTEXT INDEX ON HumanResources.JobCandidate;  
GO  

See Also

sys.fulltext_indexes (Transact-SQL)
ALTER FULLTEXT INDEX (Transact-SQL)
CREATE FULLTEXT INDEX (Transact-SQL)
Full-Text Search