Oracle PL/SQL Tutorial/Character String Functions/VSIZE
Версия от 13:45, 26 мая 2010; (обсуждение)
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>