DUMP function v16
DUMP function returns a VARCHAR2 value which contain the datatype code, length in bytes, and internal representation of expression.
Where return_fmt
specifies the format of the any of this return values:
- 8 returns result in octal notation
- 10 returns result in decimal notation
- 16 returns result in hexadecimal notation
- 17 returns each byte printed as a character if and only if it can be interpreted as a printable character in the character set of the compiler.
The arguments start_position
and length
combine to determine which portion of the internal representation to return. The default is to return the entire internal representation in decimal notation.
If expr
is null, then it returns NULL
.
Examples
- On this page
- Examples