What can cause an Oracle ROWID to change? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T03:19:48Zhttp://stackoverflow.com/feeds/question/435109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/435109/what-can-cause-an-oracle-rowid-to-change4What can cause an Oracle ROWID to change?Dmitry Khalatov2009-01-12T11:04:32Z2009-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#43512312Answer by WW for What can cause an Oracle ROWID to change?WW2009-01-12T11:12:05Z2009-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#4351535Answer by Thilo for What can cause an Oracle ROWID to change?Thilo2009-01-12T11:27:37Z2009-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#4355264Answer by Nick Pierpoint for What can cause an Oracle ROWID to change?Nick Pierpoint2009-01-12T14:14:10Z2009-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>