Removes a text search dictionary.
DROP TEXT SEARCH DICTIONARY [ IF EXISTS ] <name> [ CASCADE | RESTRICT ]
DROP TEXT SEARCH DICTIONARY
drops an existing text search dictionary. You must be the owner of the dictionary to run this command.
Remove the text search dictionary english
:
DROP TEXT SEARCH DICTIONARY english;
This command will not succeed if there are any existing text search configurations that use the dictionary. Add CASCADE
to drop such configurations along with the dictionary.
There is no CREATE TEXT SEARCH DICTIONARY
statement in the SQL standard.
ALTER TEXT SEARCH DICTIONARY, CREATE TEXT SEARCH DICTIONARY
Parent topic: SQL Commands