DUMP function v16
The DUMP function returns a VARCHAR2 value that contains the datatype code, length in bytes, and internal representation of the expression.
Where return_fmt
specifies the format of the any of these return values:
8
returns the result in octal notation.10
returns the result in decimal notation.16
returns the result in hexadecimal notation.17
returns each byte printed as a character 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 the portion of the internal representation to return. The default is to return the entire internal representation in decimal notation.
If expr
is null, then the function returns NULL
.
Examples
- On this page
- Examples