Skip to content
Advertisement

Oracle 12 – Reset a sequence Column with row_number() over Partition

I have this table (with order by product, seq):

As you can see because of some delete statments I need to reset the seq column and have a seq from 1 for every product/group like this:

I tried to create a new counter with this code:

and the result was like this:

But when I try it with Update I get ora-00907:

I think the error is because of “order by z.product, z.seq” in Subselect. I can not remove it, because the newSeq must be based on old Seq and without it the newSub might be wrong.

Update 1:

Hier is the example without orderby:

result:

As you can see the newSeq is not based On old Seq without order by. It means when product 5/group 11 has a greather seq than the same product/group 5, the new Seq should be like that as well.

Advertisement

Answer

Use a MERGE statement and correlate on the ROWID pseudo-column to efficiently self-join:

(Note: You do NOT need an ORDER BY expression appended to the SELECT statement as it will have no practical effect as the order of the source query is irrelevant during the MERGE and could make the SELECT statement less efficient if the ordering is applied and the SQL engine does unnecessary work.)

Which, for the sample data:

Then results in:

PRODUCT GROUP SEQ
10 5 1
10 1 2
11 2 1
11 4 2
11 24 3

db<>fiddle here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement