The UCASE or UPPER function takes a character expression as a parameter and returns a string in which all alphabetical characters have been converted to uppercase.
UCASE ( characterExpression )
UPPER ( characterExpression )
The length and maximum length of the returned value are the same as the length and maximum length of the parameter.
VALUES UPPER('aSD1#w')The value returned is ASD1#W.