DUMP
Example
Section titled “Example”SELECT DUMP(name, 1016) "Name" FROM Employees WHERE ID = 1;Output
Section titled “Output”Name------------------------------------------Typ=1 Len=6: c,61,74,68,79,6eExplanation
Section titled “Explanation”The DUMP function returns a varchar2 value that includes the datatype code, length in bytes, and internal representation of the expression. In this case, an hex-dump (1016) of the name of an employee with ID 1 is obtained.