sp_drop_text_index

Description

Drops the index table and text indexes.

Syntax

sp_drop_text_index  "table_name.index_table_name"      [,"table_name.index_table_name"...]

Parameters

table_name

is the name of the table associated with the text indexes you are dropping. table_name has the form [dbname.[owner.]]table, where:

  • dbname is the name of the database containing the table.

  • owner is the name of the owner of the table.

  • table is the name of the table.

index_table_name

is the name of the index table and text index you are dropping. index_table_name has the form [dbname.[owner.]]index.

Examples

Example 1

Drops the index table and text index associated with the blurbs table:

sp_drop_text_index "blurbs.i_blurbs"

Usage

Messages

Permissions

Any user can execute sp_drop_text_index.