Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> playing with dbms_rowid
Oracle 8.1.4 on Win2k
Created a test tablespace. LMT w/ uniform extents. Created table and pk index in the new TS Ran a PL/SQL loop to load the new table with test data.
Then ran the following query:
select supl_key "key",
dbms_rowid.rowid_block_number(rowid) "block", dbms_rowid.rowid_row_number(rowid) "row"from mytable
I was somewhat surprised to find that the lowest # block-id was 18. Am I right in thinking that blocks 1 thru 17 are used for TS management? Received on Tue Mar 30 2004 - 15:00:13 CST