eygle.com   eygle.com
eygle.com  
 

« 这几天以来 | Blog首页 | 给20年后的自己发封邮件 »

How to use Oracle Dump Function

作者:eygle |【转载时请以超链接形式标明文章和作者信息及本声明
链接:

DUMP returns a VARCHAR2 value containing the datatype code, length in bytes, and internal representation of expr. The returned result is always in the database character set.

The syntax is:

DUMP(expr[,return_fmt[,start_position[,length]]])

The argument return_fmt specifies the format of the return value and can have any of the following values:

  • 8 returns result in octal notation.
  • 10 returns result in decimal notation.
  • 16 returns result in hexadecimal notation.
  • 17 returns result as single characters.

By default, the return value contains no character set information. To retrieve the character set name of expr, specify any of the preceding format values, plus 1000. For example, a return_fmt of 1008 returns the result in octal, plus provides the character set name of expr.

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 this function returns a null.

Examples

The following examples show how to extract dump information from a string expression and a column:

SELECT DUMP('abc', 1016)
   FROM DUAL;

DUMP('ABC',1016)
------------------------------------------
Typ=96 Len=3 CharacterSet=WE8DEC: 61,62,63

SELECT DUMP(last_name, 8, 3, 2) "OCTAL"
   FROM employees
   WHERE last_name = 'Hunold';

OCTAL
-------------------------------------------------------------------
Typ=1 Len=6: 156,157

SELECT DUMP(last_name, 10, 3, 2) "ASCII"
   FROM employees
   WHERE last_name = 'Hunold';

ASCII
--------------------------------------------------------------------
Typ=1 Len=6: 110,111

历史上的今天...
      >> 2008-11-10文章:
      >> 2006-11-10文章:
             如何更改监听器日志文件名称
------
这篇 【How to use Oracle Dump Function】来自 eygle.com | CSDN网摘| del.icio.us|Google订阅 | 鲜果订阅 | 抓虾订阅

By eygle on 2005-11-10 12:33 | Comments (0) | Posted to HowTo | SQL.PLSQL | Edit |

相关文章 随机文章
  • Oracle中的不可见字符处理案例一则
  • 如何判断一个字符串是否为数字或日期?
  • Oracle10g中SCN与TimeStamp的相互转换
  • 如何通过DB link进行远程过程或函数调用
  • 使用分析函数进行行列转换
  • 如何将复制队列表移出系统(SYSTEM)表空间
    使用Oracle9i的自动控制文件备份功能
    GreenBrowser开源
    Oracle分区表(Partition Table)的数量限制
    《深入浅出Oracle》更名《深入解析Oracle》
    搜索本站:

    留言 (0)

    发表留言:



    Remember Me?
    (输入验证码后方可评论,谢谢支持)



    CopyRight © 2004~2010 eygle.com, All rights reserved.