当前位置:  数据库>oracle

Oracle Rowid 介绍

    来源: 互联网  发布时间:2017-04-04

    本文导语: 一. 官网说明        owid的定义:A globally unique address for a row in a database.          rowid 分为extended rowid 和 restricted rowied.   1.1 Restricted ROWID        Internally, the ROWID is a structure that holds information that the database server needs to acces...

一. 官网说明

       owid的定义:A globally unique address for a row in a database.

 

       rowid 分为extended rowid 和 restricted rowied.

 

1.1 Restricted ROWID

       Internally, the ROWID is a structure that holds information that the database server needs to access a row. The restricted internal ROWID is 6 bytes on most platforms.

 

Each restricted rowid includes the following data:

       (1)Datafile identifier

       (2)Block identifier

       (3)Row identifier

 

       The restricted ROWID pseudocolumn is returned to client applications in the form of an 18-character string with a hexadecimal encoding of the datablock, row, and datafile components of the ROWID.

 

1.2  Extended ROWID

       The extended ROWID datatype includes the data in the restricted rowid plus a data object number. The data object number is an identification number assigned to every database segment. The extended internal ROWID is 10 bytes on most platforms.

       Data in an extended ROWID pseudocolumn is returned to the client application in the form of an 18-character string (for example, "AAAA8mAALAAAAQkAAA"), which represents a base 64 encoding of the components of the extended ROWID in a four-piece format, OOOOOOFFFBBBBBBRRR. Extended rowids are not available directly. You can use a supplied package, DBMS_ROWID, to interpret extended rowid contents. The package functions extract and provide information that would be available directly from a restricted rowid as well as information specific to extended rowids.

 

1.3 Rowid Format

       Oracle Database uses a rowid to uniquely identify a row. Internally, the rowid is a structure that holds information that the database needs to access a row. A rowid is not physically stored in the database, but is inferred from the file and block on which the data is stored.

       An extended rowid includes a data object number. This rowid type uses a base 64 encoding of the physical address for each row. The encoding characters are A-Z, a-z, 0-9, +, and /.

 

Example 12-1 queries the ROWID pseudocolumn to show the extended rowid of the row in the employees table for employee 100.

Example 12-1 ROWID Pseudocolumn

SQL> SELECT ROWID FROM employees WHERE employee_id = 100;

 

ROWID

------------------

AAAPecAAFAAAABSAAA

 

Figure 12-8 illustrates the format of an extended rowid.

Figure 12-8 ROWID Format

Oracle Rowid 介绍[图片]


An extended rowid is displayed in a four-piece format, OOOOOOFFFBBBBBBRRR, with the format divided into the following components:

 

(1)OOOOOO

       The data object number identifies the segment (data object AAAPec in Example 12-1). A data object number is assigned to every database segment. Schema objects in the same segment, such as a table cluster, have the same data object number.

(2)FFF

       The tablespace-relative data file number identifies the data file that contains the row (file AAF in Example 12-1).

(3)BBBBBB

       The data block number identifies the block that contains the row (block AAAABS in Example 12-1). Block numbers are relative to their data file, not their tablespace. Thus, two rows with identical block numbers could reside in different data files of the same tablespace.

(4)RRR

       The row number identifies the row in the block (row AAA in Example 12-1).

 

 

       After a rowid is assigned to a row piece, the rowid can change in special circumstances. For example,

(1)if row movement is enabled, then the rowid can change because of partition key updates, Flashback Table operations, shrink table operations, and so on.

(2)If row movement is disabled, then a rowid can change if the row is exported and imported using Oracle Database utilities.

-- rowid 改变的条件

 

Note:

       Internally, the database performs row movement as if the row were physically deleted and reinserted. However, row movement is considered an update, which has implications for triggers.

 

 

二.  rowid 说明

 

       rowid是伪列(pseudocolumn),伪劣的意思是实际上这一列本身在数据字典中并不存在,在查询结果输出时它被构造出来的。

       rowid并不会真正存在于表的data block中,但是他会存在于index当中,用来通过rowid来寻找表中的行数据。


 

2.1 利用rowid来得到相关信息

SQL> conn sys/admin as sysdba

已连接。

SQL> create table bl(id number);

表已创建。

SQL> insert into bl values(1);

已创��� 1 行。

 

SQL> select owner,segment_name,file_id,RELATIVE_FNO,block_id from dba_extents where owner=''SYS'' and segment_name=''BL'';

OWNER SEGMENT_NA   FILE_ID  RELATIVE_FNO   BLOCK_ID

-----    ----------           ----------    ------------          ----------

SYS    BL                  1           1            62129

 

SQL> desc dbms_rowid.rowid_info

PACKAGE SYS.DBMS_ROWID

PROCEDURE ROWID_INFO

 Argument Name                  Type                    In/Out

 ------------------------------ ----------------------- ------

 ROWID_IN                       ROWID                   IN  

 ROWID_TYPE                     NUMBER                  OUT  

 OBJECT_NUMBER                  NUMBER                  OUT  

 RELATIVE_FNO                   NUMBER                  OUT  

 BLOCK_NUMBER                   NUMBER                  OUT  

 ROW_NUMBER                     NUMBER                  OUT  

 TS_TYPE_IN                     VARCHAR2                IN

 

     

SQL> set serveroutput on

SQL>DECLARE

   v_rowid_type          NUMBER;

   v_OBJECT_NUMBER       NUMBER;

   v_RELATIVE_FNO        NUMBER;

   v_BLOCK_NUMBERE_FNO   NUMBER;

   v_ROW_NUMBER          NUMBER;

BEGIN

   DBMS_ROWID.rowid_info (

                               rowid_in        => ''AAAJVnAANAAAACiAAA'',

                 rowid_type      => v_rowid_type,

                 object_number   => v_OBJECT_NUMBER,

                 relative_fno    => v_RELATIVE_FNO,

                 block_number    => v_BLOCK_NUMBERE_FNO,

                 ROW_NUMBER      => v_ROW_NUMBER);

   DBMS_OUTPUT.put_line (''ROWID_TYPE:  '' || TO_CHAR (v_rowid_type));

DBMS_OUTPUT.put_line (''OBJECT_NUMBER:  '' || TO_CHAR (v_OBJECT_NUMBER));

   DBMS_OUTPUT.put_line (''RELATIVE_FNO:  '' || TO_CHAR (v_RELATIVE_FNO));

   DBMS_OUTPUT.put_line (''BLOCK_NUMBER:  '' || TO_CHAR (v_BLOCK_NUMBERE_FNO));

   DBMS_OUTPUT.put_line (''ROW_NUMBER:  '' || TO_CHAR (v_ROW_NUMBER));

END;

/

 

结果:

ROWID_TYPE:  1

OBJECT_NUMBER:  38247

RELATIVE_FNO:  13

BLOCK_NUMBER:  162

ROW_NUMBER:  0

 

2.2 . Rowid的结构

 

Oracle Rowid 介绍[图片] 

 

ROWID 格式:

       扩展的ROWID 在磁盘上需要10 个字节的存储空间,并使用18 个字符来显示。

 

它包含下列组成元素:

       1. 数据对象编号:每个数据对象(如表或索引)在创建时都分配有此编号,并且此编号在数据库中是唯一的

       2. 相关文件编号:此编号对于表空间中的每个数据文件是唯一的

       3. 块编号:表示包含此行的块在数据文件中的位置

       4. 行编号:标识块头中行目录位置的位置

 

在内部,存储的10个字节(bytes),即80位(bit)又按如下规则进行划分:

       (1)数据对象编号需要32 bit

       (2)相关文件编号需要10 bit

       (3)块编号需要22 bit

       (4)行编号需要16 bit

 

 

       在oracle 8以前,一个rowid占用6个字节大小的存储空间(10bit file#+22bit block#+16bit row#), rowid格式为:BBBBBBBB.RRRR.FFFF。

       在oracle 8以后, rowid的存储空间扩大到了10个字节(32bit object#+10bit rfile#+22bit block#+16bit row#),文件号仍然用10位表示,只是不再需要置换,为了向后兼容,同时引入了相对文件号(rfile#),所以从Oracle7到Oracle8,Rowid仍然无需发生变化.

 

       Rdba(Tablespace relative database block address)就是rowid中的rfile#+block#.

 

       rowid这样改变之后,数据库中数据库文件个数的限制从整个数据库最多只能有的2^10-2=1022个数据文件(去掉全0和全1), 变为了每个表空间中可以最多有2^10-2个数据文件。

       所以说,数据库能支持的数据文件最大数是受rowid的长度限制的。

 

       需要注意的是: local index中存储的rowid是6个字节,而global index中存储的rowid是10个字节。

 

       那么增加的32bit object# 这个前缀主要就是用来定位表空间的,同时这个object#其实对应的就是data_object_id,由于一个段对象只能属于一个表空间,同时data_object_id就是标识了一个段的物理存储id.因此object#+rfile#就可以唯一定位当前的rowid是在那个数据文件上了。

 

 

可以通过dbms_rowid这个包来转换我们的rowid成不同组成部分:

       dbms_rowid.rowid_object(rowid)---> 32bit object#
       dbms_rowid.rowid_relative_fno(rowid)---> 10bit rfile#
       dbms_rowid.rowid_block_number(rowid)---> 22bit block#
       dbms_rowid.rowid_row_number(rowid)---> 16bit row#





 

       扩展的ROWID 使用以64 为基数的编码方案来显示,该方案将六个位置用于数据对象编号、三个位置用于相关文件编号、六个位置用于块编号、三个位置用于行编号。

       以64 为基数的编码方案使用字符“A-Z”、“a-z”、“0-9” 和“/”。共有64 个字符,如下例所示:

 

SQL> SELECT department_id, rowid FROM hr.departments;

     EMPNO ROWID            

---------- ------------------

      7488 AAAMfPAAEAAAAAgAAA

      7499 AAAMfPAAEAAAAAgAAB

      7521 AAAMfPAAEAAAAAgAAC

      7566 AAAMfPAAEAAAAAgAAD

      7654 AAAMfPAAEAAAAAgAAE

      7698 AAAMfPAAEAAAAAgAAF

      7782 AAAMfPAAEAAAAAgAAG

      7788 AAAMfPAAEAAAAAgAAH

      7839 AAAMfPAAEAAAAAgAAI

      7844 AAAMfPAAEAAAAAgAAJ

      7876 AAAMfPAAEAAAAAgAAK

      7900 AAAMfPAAEAAAAAgAAL

 

在本例中:

       AAAMfP 是数据对象编号

       AAE 是相关文件编号

       AAAAAg是块编号

       AAA是EMPNO=7488 的部分的行编号

 

其他内容参考:

       Oracle 数据块 Block 说明

      


    
 
 

您可能感兴趣的文章:

  • Oracle 12c发布简单介绍及官方下载地址
  • Oracle 系统变量函数介绍
  • Oracle数据库(Oracle Database)体系结构及基本组成介绍
  • Oracle中SQL语句连接字符串的符号使用介绍
  • Oracle 10g和Oracle 11g网格技术介绍
  • oracle 数据泵导入导出介绍
  • ORACLE数据库常用字段数据类型介绍
  • Oracle解锁的方式介绍
  • Oracle 12c的九大最新技术特性介绍
  • 占用一下,小弟想到深圳发展,有一年JAVA开发经验,熟悉oracle数据库,哪位在深圳的兄弟帮忙介绍个工作,我的QQ:9182647,谢谢了!
  • oracle中UPDATE nowait 的使用方法介绍
  • oracle 创建表空间详细介绍
  • 哪位大哥能介绍一下在redhat7.2下安装oracle9i的过程和细节问题,只要有用,小弟另有送分
  • Oracle中PL/SQL中if语句的写法介绍
  • oracle 重置sys密码的方法介绍
  • Oracle中存取控制介绍
  • oracle中截断表的使用介绍
  • oracle异常(预定义异常,自定义异常)应用介绍
  • oracle sequence语句重置方介绍
  • oracle表空间中空表统计方法示例介绍
  • Oracle round()函数与trunc()函数区别介绍
  • Oracle中用Rowid查找和删除重复记录
  • Oracle中查询rownum和rowid的区别
  • Oracle查询语句中rownum与rowid的不同之处分析
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • oracle 11g最新版官方下载地址
  • 在linux下安装oracle,如何设置让oracle自动启动!也就是让oracle那个服务自动启动,不是手动的
  • Oracle 数据库(oracle Database)Select 多表关联查询方式
  • 请问su oracle 和su - oracle有什么不同?
  • 如何设置让Oracle SQL Developer显示的时间包含时分秒
  • 虚拟机装Oracle R12与Oracle10g
  • oracle中如何把表中具有相同值列的多行数据合并成一行
  • Oracle 数据库开发工具 Oracle SQL Developer
  • Oracle 数据库(oracle Database)性能调优技术详解
  • Oracle EBS R12 支持 Oracle Database 11g
  • ORACLE日期相关操作
  • SCO unix下安装oracle,但没有光盘,请大家推荐一个oracle下载站点(unix版本的)。谢谢!!!!
  • ORACLE中DBMS_RANDOM随机数生成包
  • Example 12-1 iis7站长之家
  • Linux /$ORACLE_HOME $ORACLE_HOME
  • Linux系统下Oracle的启动与Oracle监听的启动
  • 请问在solaris下安装ORACLE,用root用户和用oracle用户安装有什么区别么?
  • 网间Oracle的连接,远程连接Oracle服务器??
  • 请教:.profile中:if [ -d /opt/oracle/db01/app/oracle/product/9.2.0 ]是什么意思?
  • 在linux 中如何删除oracle db 与卸载oracle.
  • linux下安装oracle后使用命令行启动的方法 linux启动oracle


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3