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

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

DROP FULLTEXT MAPPING

Name

DROP FULLTEXT MAPPING -- remove a binding between token and dictionaries

Synopsis

DROP FULLTEXT MAPPING [IF EXISTS] ON cfgname FOR tokentypename;
  

Description

DROP FULLTEXT MAPPING remove a full-text mapping in a given configuration for a token of a specific type.

Parameters

IF EXISTS

Do not throw an error if the specified full-text mapping does not exist. A notice is issued in this case.

cfgname

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

tokentypename

A token type for which full-text mapping dropped.

See Also

CREATE FULLTEXT MAPPING