oracle rowid

jss001發表於2009-02-24



Oracle rowid


一:rowid組成

https://docs.oracle.com/cd/E11882_01/server.112/e41084/sql_elements001.htm#SQLRF00213

https://docs.oracle.com/cd/E11882_01/server.112/e41084/pseudocolumns008.htm#SQLRF00254

(1)The data object number of the object

(2)The data block in the data file in which the row resides

(3)The position of the row in the data block (first row is 0)

(4)The data file in which the row resides (first file is 1). The file number is relative to the tablespace.


二:rowid重要用途

https://docs.oracle.com/cd/E11882_01/server.112/e41084/pseudocolumns008.htm#SQLRF00254

Rowid values have several important uses:

(1)They are the fastest way to access a single row.

(2)They can show you how the rows in a table are stored.

(3)They are unique identifiers for rows in a table.


三:rowid限制

Small Datafile

Max(一個表空間的資料檔案數)=(2^10)-1=1023

Max(一個資料檔案包含塊數)=2^22=4194304=4M(block)

Max(一個block包含行數)=2^16=65536=64k(rows)

Max(一個資料庫內object個數)=2^32=4294967296=4G(objects)

Bigfile Datafile

Max(一個表空間的資料檔案數)=1

Max(一個資料檔案包含塊數)=2^(22+10)=4294967296=4G(block)

Max(一個block包含行數)=2^16=65536=64k(rows)

Max(一個資料庫內object個數)=2^32=4294967296=4G(objects)


測試如下:

(1) 建立測試資料

SQL> create tablespace chenjch_tbs datafile '/u01/app/oracle/oradata/cc/chenjch_tbs01.dbf' size 10M autoextend on maxsize 1G;

SQL> create user chenjch identified by a default tablespace chenjch_tbs;

SQL> grant connect,resource,dba to chenjch;

SQL> create table t1 as select * from scott.emp;

SQL> create table t2 as select * from scott.dept;

 

(2)檢視t1rowid資訊

SQL> SELECT rowid,empno from t1 a order by empno;

SQL>

select substr(rowid, 1, 6) "object",

       substr(rowid, 7, 3) "file",

       substr(rowid, 10, 6) "block",

       substr(rowid, 16, 3) "row"

  from t1;
---取出任意一行rowid

AAAVV9 AAF AAAACD AAC
---通過rowid計算對應的obj#,rfile#,block#,row#;

(1)obj#=AAAVV9=21*64^2+21*64+61=87421

(2)rfile#=AAF=5

(3)block#=AAAACD=2*64+3=131

(4)row#=AAC=2

 


---也可以通過dbms_rowid轉換得到相應的
obj#,rfile#,block#,row#;
SQL>

select dbms_rowid.rowid_object(rowid) object_id,

       dbms_rowid.rowid_relative_fno(rowid) file_id,

       dbms_rowid.rowid_block_number(rowid) block_id,

       dbms_rowid.rowid_row_number(rowid) row_number,

       ROWID,

       empno

  from T1

 order by empno;

 


(3)rowid和限制

Small Datafile

rowid採用10byte來儲存=8*10=80bit

其中:

obj#佔用32bit

rfile#佔用10bit

block#佔用22bit

row#佔用16bit

Max(一個表空間的資料檔案數)=(2^10)-1=1023

Max(一個資料檔案包含塊數)=2^22=41943044=4M(block)

Max(一個block包含行數)=2^16=65536=64k(rows)

Max(一個資料庫內object個數)=2^32=4294967296=4G(objects)


Bigfile Datafile

rowid採用10byte來儲存=8*10=80bit

其中:

obj#佔用32bit

rfile#佔用0bit

block#佔用32bit

row#佔用16bit

Max(一個表空間的資料檔案數)=2^0=1

Max(一個block包含行數)=2^16=65536=64k(rows)

Max(一個資料庫內object個數)=2^32=4294967296=4G(objects)


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2154425/,如需轉載,請註明出處,否則將追究法律責任。

相關文章