Oracle PL/SQL Tutorial/Character String Functions/VSIZE
Vsize returns the storage size of a string in Oracle
The general format for this function is: VSIZE(string).
SQL> SELECT VSIZE("Returns the storage size of a string") FROM dual;
VSIZE("RETURNSTHESTORAGESIZEOFASTRING")
---------------------------------------
36
SQL>
SQL>