| sshd 回复于:2005-01-06 02:04:55
|
do not manipulate rowids directly.
for queries, use "parallel" hint to archive parallelism
for DMLs, parallelism can be achived by partition the tables
|
| luck28us 回复于:2005-01-06 21:41:19
|
ROWID是和物理位置有关。从student guide中摘一段:
The format(ROWID) is OOOOOOFFFBBBBBBRRR:
. OOOOOO is the object number.
. FFF is the relative data file number where the block is located; the
file number is relative to the tablespace.
. BBBBBB is the block ID where the row is located.
. RRR is the row in the block.
不过如楼上sshd说的一样,不要直接操作ROWID!
|