UnloadLabeledDictionarySet

Unloads all user-defined dictionaries with a particular label from a Pulse session. The dictionaries continue to exist, and a user can later reload the dictionaries, if needed.

You cannot unload a default dictionary, but you can replace it by loading a custom user-defined dictionary.

Syntax

SELECT unloadLabeledDictionarySet(USING PARAMETERS label='labelName') OVER();

Parameters

Argument Description
label The label of the dictionary set that you want to unload.

Examples

select unloadLabeledDictionarySet(USING PARAMETERS label='custom_negatives') OVER();
				
success
---------
t
(1 row)
				

See Also