Why don't you just use
See this entry in my blog on how to do this using recursive CTE's and a single IDENTITY?:
Update:
If the problem is building the equipment to the next step, then you probably better use absolute value instead of relative.
Remember the previous value of the step in the variable (in the page itself or on server side), and just update it with the new value of the variable.
Instead of this:
UPDATE mytable
SET step = step + 1
use this:
SET @nextstep = 2
UPDATE mytable
SET step = @nextstep
You may also add an autoincremented last_update field to the column to make sure you're updating a column not been updated since your page has loaded:
SELECT last_update
INTO @lastupdate
FROM mytable
WHERE item_id = @id
UPDATE mytable
SET step = @nextstep
WHERE item_id = @id
AND last_update = @lastupdate
Update 2:
If you are using a linked list of states (i. e. you don't update, but insert new states), then just mark the column IDENTITY and insert the ID of the previous state:
item_id step_id prev_step_id
1 10232 0
1 12123 10232
, make step_id and prev_step_id unique, and query like this:
WITH q (item_id, step_id, step_no) AS
(
SELECT item_id, step_id, 1
FROM mytable
WHERE item_id = 1
AND prev_step_id = 0
UNION ALL
SELECT q.item_id, m.step_id, q.step_no + 1
FROM q
JOIN mytable m
ON m.item_id = q.item_id
m.prev_step_id = q.step_id
)
SELECT *
FROM q
If two people want to insert two records, then the UNIQUE constraint on prev_step_id wil fire and the last insert will fail.
