GetAllLoadedDictionaries

Lists all the dictionaries and dictionary labels that are loaded into the current Pulse session. This function shows you which dictionaries are determining the sentiment score of an attribute. Only one dictionary of each type can be loaded in a single session.

Syntax

SELECT GetAllLoadedDictionaries() OVER(); 

Examples

SELECT GetAllLoadedDictionaries() OVER(); 
    dictionary    | label
------------------+-------
neg_words_en      | default
stop_words_es     | default
neutral_words_es  | default
white_list_en     | default
normalization_en  | default
pos_words_es      | default
neg_words_es      | default
pos_words_en      | default
white_list_es     | default
neutral_words_en  | default
stop_words_en     | default
normalization_es  | default
(12 rows)