What can cause an Oracle ROWID to change? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:19:48Z http://stackoverflow.com/feeds/question/435109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/435109/what-can-cause-an-oracle-rowid-to-change 4 What can cause an Oracle ROWID to change? Dmitry Khalatov 2009-01-12T11:04:32Z 2009-01-12T14:26:30Z <p>AFAIK ROWID in Oracle represents physical location of a record in appropriate datafile. In which cases ROWID of a record may change ?</p> <p>The one known to me is UPDATE on partitioned table that "moves" the record to another partition.</p> <p>Are there another cases ? Most of our DBs are Oracle 10.</p> http://stackoverflow.com/questions/435109/what-can-cause-an-oracle-rowid-to-change/435123#435123 12 Answer by WW for What can cause an Oracle ROWID to change? WW 2009-01-12T11:12:05Z 2009-01-12T11:12:05Z <p>As you have said, it occurs anytime the row is physically moved on disk, such as:</p> <ul> <li>Export/import of the table</li> <li>ALTER TABLE XXXX MOVE</li> <li>ALTER TABLE XXXX SHRINK SPACE</li> <li>FLASHBACK TABLE XXXX</li> <li>Splitting a partition</li> <li>Updating a value so that it moves to a new partition</li> <li>Combining two partitions</li> </ul> <p>If is in an index organized table, then an update to the primary key would give you a different ROWID as well.</p> http://stackoverflow.com/questions/435109/what-can-cause-an-oracle-rowid-to-change/435153#435153 5 Answer by Thilo for What can cause an Oracle ROWID to change? Thilo 2009-01-12T11:27:37Z 2009-01-12T11:27:37Z <p>+1 @WW</p> <p>As an aside: </p> <p>ROWID for index organized tables are different (they are called UROWID, I believe), because the physical location of the row can change during updates to the table (when tree nodes split or are joined). </p> <p>In order to make indexing still possible, the UROWID includes the "logical id" (the primary key), and the "likely physical id" (a regular ROWID), the latter of which may be expired.</p> http://stackoverflow.com/questions/435109/what-can-cause-an-oracle-rowid-to-change/435526#435526 4 Answer by Nick Pierpoint for What can cause an Oracle ROWID to change? Nick Pierpoint 2009-01-12T14:14:10Z 2009-01-12T14:14:10Z <p>Another +1 to WW, but just to add a little extra...</p> <p>If the driving question is whether you can store ROWIDs for later use, I would say "don't do it".</p> <p>You are fine to use ROWIDs within a transaction - for example collecting a set of ROWIDs on which to carry out a subsequent operations - but you should <em>never</em> store the ROWIDs in a table and assume they're going to be ok to use at a later date.</p>