Mega Code Archive

 
Categories / Oracle PLSQL / Char Functions
 

Vsize

SQL> SQL> SQL> -- Vsize: returns the storage size of a string in Oracle. SQL> SQL> -- VSIZE(string) SQL> SQL> SELECT VSIZE('Returns the storage size of a string') FROM dual; VSIZE('RETURNSTHESTORAGESIZEOFASTRING') ---------------------------------------                                      36 SQL> SQL> SQL> SQL>