Assign auto-incrementing value to new column in Oracle - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T23:04:13Zhttp://stackoverflow.com/feeds/question/243790http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle1Assign auto-incrementing value to new column in Oraclenohat2008-10-28T15:43:07Z2009-07-13T17:36:32Z
<p>I have this table in an Oracle DB which has a primary key defined on 3 of the data columns. I want to drop the primary key constraint to allow rows with duplicate data for those columns, and create a new column, 'id', to contain an auto-incrementing integer ID for these rows. I know how to create a sequence and trigger to add an auto-incrementing ID for new rows added to the table, but is it possible to write a PL/SQL statement to add unique IDs to all the rows that are already in the table?</p>
http://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle/243838#2438383Answer by Steve for Assign auto-incrementing value to new column in OracleSteve2008-10-28T16:00:24Z2008-10-28T16:00:24Z<p>If you're just using an integer for a sequence you could update the id with the rownum. e.g.</p>
<pre><code>update
table
set id = rownum
</code></pre>
<p>You then need to reset the sequence to the next valid id.</p>
http://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle/244080#2440805Answer by Tony Andrews for Assign auto-incrementing value to new column in OracleTony Andrews2008-10-28T17:07:43Z2008-10-28T17:07:43Z<p>Once you have created the sequence:</p>
<pre><code>update mytable
set id = mysequence.nextval;
</code></pre>
http://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle/245100#2451002Answer by DCookie for Assign auto-incrementing value to new column in OracleDCookie2008-10-28T22:22:04Z2008-10-28T22:22:04Z<p>Is this what you need?</p>
<pre><code>UPDATE your_table
SET id = your_seq.nextval;
</code></pre>
<p>This assumes you don't care what order your primary keys are in.</p>
http://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle/1120949#11209490Answer by Stephanie Abingdon for Assign auto-incrementing value to new column in OracleStephanie Abingdon2009-07-13T17:36:32Z2009-07-13T17:36:32Z<p>First you should check your PCTFREE... is there enough room for every row to get longer?</p>
<p>If you chose a very small PCTFREE or your data has lots of lenght-increasing updates, you might begin chaining every row to do this as an update.</p>
<p>You almost certainly better to do this as a CTAS.</p>
<p>Create table t2 as select seq.nextval, t1.* from t1.</p>
<p>drop t1</p>
<p>rename t2 to t1.</p>