GetStorage

Lists the currently loaded user-dictionaries and user-defined mapping.

This function must be used with the OVER() clause.

Syntax

SELECT GetStorage([using PARAMETERS label='label']) OVER();

Parameters

Argument Description
label The label of the dictionaries and mapping names that you want to list. If you do not provide a label, Pulse uses the default dictionaries.

Examples

 SELECT GetStorage() OVER();
       key
------------------
 neg_words_en
 neutral_words_en
 pos_words_en
 stop_words_en
 white_list_en
 normalization_en
 neg_words_es
 neutral_words_es
 pos_words_es
 stop_words_es
 white_list_es
 normalization_es
(12 rows)

See Also