Click to Rate and Give Feedback
TechNet
TechNet Library
SQL Server
SQL Server 2005
 DROP FULLTEXT INDEX (Transact-SQL)
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2005 Books Online (November 2008)
DROP FULLTEXT INDEX (Transact-SQL)

Removes a full-text index from a specified table.

Topic link icon Transact-SQL Syntax Conventions

DROP FULLTEXT INDEX ON table_name
table_name

Is the name of the table containing the full-text index to be removed.

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

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

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

USE AdventureWorks;
GO
DROP FULLTEXT INDEX ON HumanResources.JobCandidate;
GO
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker