バージョンごとのドキュメント一覧

CREATE TEXT SEARCH CONFIGURATION

CREATE TEXT SEARCH CONFIGURATION <refpurpose>define a new text search configuration</refpurpose> — 新しいテキスト検索設定を定義する

概要

CREATE TEXT SEARCH CONFIGURATION name (
    PARSER = parser_name |
    COPY = source_config
)

説明

<title>Description</title>

<command>CREATE TEXT SEARCH CONFIGURATION</command> creates a new text search configuration. A text search configuration specifies a text search parser that can divide a string into tokens, plus dictionaries that can be used to determine which tokens are of interest for searching. CREATE TEXT SEARCH CONFIGURATIONは新しいテキスト検索設定を作成します。 テキスト検索設定は、文字列をトークンに分割するためのテキスト検索パーサを指定すると共に、どのトークンを検索対象とするかを決定するために使用する辞書を特定します。

If only the parser is specified, then the new text search configuration initially has no mappings from token types to dictionaries, and therefore will ignore all words. Subsequent <command>ALTER TEXT SEARCH CONFIGURATION</command> commands must be used to create mappings to make the configuration useful. Alternatively, an existing text search configuration can be copied. パーサのみが指定された場合、新しいテキスト検索設定の初期状態では、トークン型と辞書との対応付けが存在しません。 そのため、すべての単語が無視されます。 この設定を実用できるようにするためには、後でALTER TEXT SEARCH CONFIGURATIONコマンドを使用して、対応付けを作成しなければなりません。 この他に、既存のテキスト検索設定を複製することも可能です。

If a schema name is given then the text search configuration is created in the specified schema. Otherwise it is created in the current schema. スキーマ名が指定された場合、テキスト検索設定は指定されたスキーマ内に作成されます。 そうでなければ、現在のスキーマ内に作成されます。

The user who defines a text search configuration becomes its owner. テキスト検索設定を定義したユーザが所有者になります。

Refer to <xref linkend="textsearch"/> for further information. 詳細は第12章を参照してください。

パラメータ

<title>Parameters</title>
name

The name of the text search configuration to be created. The name can be schema-qualified. 作成するテキスト検索設定の名称です。 名前をスキーマ修飾することができます。

parser_name

The name of the text search parser to use for this configuration. この設定で使用するテキスト検索パーサの名称です。

source_config

The name of an existing text search configuration to copy. 複製するテキスト検索設定の名称です。

注釈

<title>Notes</title>

The <literal>PARSER</literal> and <literal>COPY</literal> options are mutually exclusive, because when an existing configuration is copied, its parser selection is copied too. PARSERCOPYオプションを同時に使用することはできません。 既存の設定が複製される場合は、パーサの設定も複製されるためです。

互換性

<title>Compatibility</title>

There is no <command>CREATE TEXT SEARCH CONFIGURATION</command> statement in the SQL standard. 標準SQLにはCREATE TEXT SEARCH CONFIGURATION文はありません。

関連項目

<title>See Also</title> ALTER TEXT SEARCH CONFIGURATION, DROP TEXT SEARCH CONFIGURATION