I have a sequence used to seed my (Integer based) primary keys in an oracle table.
It appears this sequence has not always been used to insert new values into the table. How do I get the sequence back in step with the actual values in the table?
|
|
|
|
|
|
|
If ID is the name of your PK column and PK_SEQ is the name of your sequence:
This all assumes that you don't have new inserts into the table while you're doing this... |
||||||||||||
|
|
|
In short, game it:
You can get the max sequence value used within your table, do the math, and update the sequence accordingly. |
||
|
|
|
|
In some cases, you may find it easier to simply get the current max value and then
The app will be broken after you do the drop. But that will keep anybody from inserting rows during that period, and creating a sequence is quick. Make sure you recreate any grants on the sequence since those will be dropped when the sequence is. And you may want to manually recompile any plsql that depends on the sequence. |
||
|