DROP TEXT SEARCH DICTIONARY <refpurpose>remove a text search dictionary</refpurpose> — テキスト検索辞書を削除する
DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] name
[ CASCADE | RESTRICT ]
<command>DROP TEXT SEARCH DICTIONARY</command> drops an existing text
search dictionary. To execute this command you must be the owner of the
dictionary.
DROP TEXT SEARCH DICTIONARY
は既存のテキスト検索辞書を削除します。
このコマンドを実行するためには、その辞書の所有者でなければなりません。
IF EXISTS
Do not throw an error if the text search dictionary does not exist. A notice is issued in this case. テキスト検索辞書が存在しない場合でもエラーとしません。 この場合は注意が発行されます。
name
The name (optionally schema-qualified) of an existing text search dictionary. 既存のテキスト検索辞書の名称(スキーマ修飾可)です。
CASCADE
Automatically drop objects that depend on the text search dictionary, and in turn all objects that depend on those objects (see <xref linkend="ddl-depend"/>). テキスト検索辞書に依存するオブジェクトを自動的に削除し、さらにそれらのオブジェクトに依存するすべてのオブジェクトも削除します(5.15参照)。
RESTRICT
Refuse to drop the text search dictionary if any objects depend on it. This is the default. 依存するオブジェクトが存在する場合、テキスト検索辞書の削除を中止します。 これがデフォルトです。
Remove the text search dictionary <literal>english</literal>:
テキスト検索辞書english
を削除します。
DROP TEXT SEARCH DICTIONARY english;
This command will not succeed if there are any existing text search
configurations that use the dictionary. Add <literal>CASCADE</literal> to
drop such configurations along with the dictionary.
この辞書を使用するテキスト検索設定が存在する場合、このコマンドは成功しません。
こうした設定を辞書と一緒に削除するためにはCASCADE
を付けてください。
There is no <command>DROP TEXT SEARCH DICTIONARY</command> statement in the
SQL standard.
標準SQLにはDROP TEXT SEARCH DICTIONARY
文はありません。