Softerra LDAP Administrator HelpShow AllHide All

UPPER

Returns the symbol expression, in which lower case symbols are converted into upper case symbols.

Syntax

UPPER (string_expression)

Arguments

string_expression - can be a constant, attribute or a result of the function that returns a string.

Examples

The following example converts the description attribute of all entries to uppercase.

UPDATE ROOTDSE
SET $description=UPPER($description)
WHERE EXISTS $description;