DUMP Function

DUMP Function


  • The DUMP function returns a varchar2 value that includes the datatype code, the length in bytes, and the internal representation of the expression.

Syntax:

  • DUMP( expression [, return_format] [, start_position] [, length] )


Parameters or Arguments

  • expression: The expression to analyze.
  • return_format: 
    • It is an 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
    • It is an Optional. 
    • The start position in the internal representation to return.
  • length
    • It is an Optional. 
    • The length of the internal representation to return.

Returns

  • The DUMP function returns a VARCHAR2 value.
  • If the return_format, start_position and length parameters are omitted, the DUMP function will return the entire internal representation in decimal notation.



Note: The DUMP function can be used in Oracle 12c, Oracle 11g, Oracle 10g, Oracle 9i, Oracle 8i.

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'

Thanks a lot for query or your valuable suggestions related to the topic.

Previous Post Next Post

Contact Form