vote up 0 vote down star

In database, such as Informix, DB2, Oracle etc, will the rowid be reused pls?

flag

2 Answers

vote up 2 vote down check

The RowID are physical location of the data stored on the disk. They are unique for a table. As such they can repeat. If the new record gets stored in the same place (deleting the older one), then rowids would be same (reused).

See this article for details on what rowid consists of in oracle http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/pseudocolumns008.htm

link|flag
why can different records in different tables have the same rowid pls? – Xiaowei Mar 25 at 5:41
If you go through the article it would explain ... basically if two tables are in same cluster, then they can possibly have same rowid. – Dheer Mar 25 at 6:02
vote up 1 vote down

It can be reused:

If you delete a row, then Oracle may reassign its rowid to a new row inserted later.

(See this)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.