Oracle/PLSQL: DUMP Function
This Oracle tutorial explains how to use the Oracle/PLSQL DUMP function with syntax and examples.
Description
The Oracle/PLSQL DUMP function returns a varchar2 value that includes the datatype code, the length in bytes, and the internal representation of the expression.
Syntax
The syntax for the Oracle/PLSQL DUMP function is:
DUMP( expression, [return_format], [start_position], [length] )
Parameters or Arguments
expression is the expression to analyze.
return_format is optional. It determines the format of the return value. This parameter can be any of the following values:
Value | Explanation |
---|---|
8 | octal notation |
10 | decimal notation |
16 | hexadecimal notation |
17 | single characters |
1008 | octal notation with the character set name |
1010 | decimal notation with the character set name |
1016 | hexadecimal notation with the character set name |
1017 | single characters with the character set name |
start_position and length are optional parameters. They determines which portion of the internal representation to display. If these parameters are omitted, the DUMP function will display the entire internal representation in decimal notation.
Applies To
The DUMP function can be used in the following versions of Oracle/PLSQL:
- Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i
Example
Let's look at some Oracle DUMP function examples and explore how to use the DUMP function in Oracle/PLSQL.
For example:
DUMP('Tech') Result: 'Typ=96 Len=4: 84,101,99,104' DUMP('Tech', 10) Result: 'Typ=96 Len=4: 84,101,99,104' DUMP('Tech', 16) Result: 'Typ=96 Len=4: 54,65,63,68' DUMP('Tech', 1016) Result: 'Typ=96 Len=4 CharacterSet=US7ASCII: 54,65,63,68' DUMP('Tech', 1017) Result: 'Typ=96 Len=4 CharacterSet=US7ASCII: T,e,c,h'
'๐ป Programming > Oracle 11g' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
SQL ์ค๋ฅ: ORA-00984: ์ด์ ์ฌ์ฉํ ์ ์์ต๋๋ค (0) | 2015.04.20 |
---|---|
[Oracle 11g] ์ค๋ผํด ํ๊ธ ๊นจ์ง (UTF-8์ผ๋ก ๋ณ๊ฒฝ) (0) | 2015.04.20 |
[์ค๋ผํด/oracle11g] ์ธ์ฝ๋ฉ ๋ฌธ์ (0) | 2015.04.20 |
ํ ์ด๋ธ ์ ์ฝ์ฌํญ ์กฐํํ๊ธฐ ( Querying constraints of a table ) (0) | 2015.04.14 |
Rename์ ์ด์ฉํ ํ ์ด๋ธ ๋ฐฑ์ ( Table Backup using Renaming ) (0) | 2015.04.14 |