DROP TEXT CONFIGURATION statement

Description

Drops a text configuration object.

Syntax

DROP TEXT CONFIGURATION  [ owner.]text-config-name

Examples

Example 1

These statements create and drop the mytextconfig text configuration object:

CREATE TEXT CONFIGURATION mytextconfig FROM default_char;
DROP TEXT CONFIGURATION mytextconfig;

Usage

Attempting to drop a text configuration object with dependent TEXT indexes results in an error. You must drop the dependent TEXT indexes before dropping the text configuration object.

Text configuration objects are stored in the ISYSTEXTCONFIG system table.


Side effects

Automatic commit

Permissions

Must be the owner of the text configuration object or have DBA authority.