Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.sai.msu.su/~megera/postgres/fts/doc/sql-fts-dropcfg.html
Дата изменения: Unknown
Дата индексирования: Sun Apr 13 07:50:26 2008
Кодировка:

Поисковые слова: arp 220
DROP FULLTEXT CONFIGURATION

DROP FULLTEXT CONFIGURATION

Name

DROP FULLTEXT CONFIGURATION -- remove a full-text configuration

Synopsis

DROP FULLTEXT CONFIGURATION [IF EXISTS]cfgname [ CASCADE | RESTRICT ];
  

Description

DROP FULLTEXT CONFIGURATION removes full-text configuration from the database. Only its owner may destroy a configuration.

To drop a configuration and all FTS objects, which depends on it, CASCADE must be specified.

Parameters

IF EXISTS

Do not throw an error if the configuration does not exist. A notice is issued in this case.

cfgname

The name (optionally schema-qualified) of the configuration to drop.

CASCADE

Automatically drop FTS objects that depend on the configuration

RESTRICT

Refuse to drop the configuration if any objects depend on it. This is the default.

See Also

CREATE FULLTEXT CONFIGURATION